시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB125541.667%

문제

You are trying to compute the next number in a sequence Sn generated by a secret code. You know that the code was generated according to the following procedure.

First, for each k between 0 and 29, choose a number Ck between 0 and 10006 (inclusive).

Then, for each integer n between 0 and 1 000 000 000 (inclusive):

  • Write n in binary.
  • Take the numbers Ck for every bit k that is set in the binary representation of n. For example, when n=5, bits 0 and 2 are set, so C0 and C2 are taken.
  • Add these Ck together, divide by 10007, and output the remainder as Sn.

You will be given a series of consecutive values of sequence S, but you don't know at which point in the sequence your numbers begin (although you do know that there is at least one more number in the sequence), and you don't know what values of Ck were chosen when the sequence was generated.

Find the next number in the sequence, or output UNKNOWN if this cannot be determined from the input data.

입력

The first line will contain an integer T, the number of test cases in the input file.

For each test case, there will be:

  • One line containing the integer N, the number of elements of sequence S that you have.
  • One line containing N single-space-separated integers between 0 and 10006, the known elements of the sequence.

Limits

  • 1 ≤ T ≤ 20
  • 1 ≤ N ≤ 1000

출력

For each test case, output one line containing "Case #XY" where X is the number of the test case, starting from 1, and Y is the next number in the sequence, or the string UNKNOWN if the next number cannot be determined.

예제 입력 1

3
7
1 2 3 4 5 6 7
4
1 10 11 200
4
1000 1520 7520 7521

예제 출력 1

Case #1: UNKNOWN
Case #2: 201
Case #3: 3514

힌트

In the first case, C0, C1 and C2 might have been 1, 2 and 4, and the values of Sn we have starting at n=1. If this is correct, we don't know C3, so the next number in the sequence could be anything! Therefore the answer is unknown.

In the second case, we cannot know all the values of Ck or even what n is, but we can prove that in any sequence, if 1, 10, 11, 200 occur in order, then the next value will always be 201.

채점 및 기타 정보

  • 예제는 채점하지 않는다.