图片被删除,或者路径改变
问题1096--B2-Sequence

1096: B2-Sequence

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 32 MiB

题目描述

A B2-Sequence is a sequence of positive integers 1≤b1<b2<b3...such that all pairwise sums bi+bj ,where i≤ j, are different.
Your task is to determine if a given sequence is a B2-Sequence or not.

输入

Each test case starts with 2 < N < 100, the number of elements in a sequence. Next line will have N integers, representing the value of each element in the sequence. Each element bi is an integer such that bi 10000. There is a blank line after each test case. The input is terminated by end of file (EOF).

输出

For each test case you must print the number of the test case, starting from 1, and a message indicating if the corresponding sequence it is a B2-Sequence or not. See the sample output below. After each test case you must print a blank line.

样例输入 Copy

4
1 2 4 8
4
3 7 10 14

样例输出 Copy

Case #1: It is a B2-Sequence.

Case #2: It is not a B2-Sequence.

来源/分类

**