408816: GYM103329 A Yes, Prime Minister

Memory Limit:0 MB Time Limit:10 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

A. Yes, Prime Ministertime limit per test10 secondsmemory limit per test512 mebibytesinputstandard inputoutputstandard output

Mr. Hacker's Department of Administrative Affairs (DAA) has an infinite amount of civil servants. Every integer is used as an ID (identification number) by exactly one civil servant. Mr. Hacker is keen on reducing overmanning in civil service, so he will only keep people with consecutive IDs in $$$[l, r]$$$, and dismiss all the others.

However, permanent secretary Sir Humphrey's ID is $$$x$$$, and he cannot be kicked out, so $$$l \leq x \leq r$$$ must hold. Mr. Hacker wants to be Prime Minister, so he demands that the sum of people's IDs $$$\sum_{i = l}^{r} i$$$ must be a prime number.

You, Bernard, need to make the reduction plan which meets the demands of both bosses. Otherwise, Mr. Hacker or Sir Humphrey will fire you.

Mr. Hacker would be happy to keep as few people as possible. Please calculate the minimum number of people left to meet their requirements.

A prime number $$$p$$$ is an integer greater than $$$1$$$ that has no positive integer divisors other than $$$1$$$ and $$$p$$$.

Input

The first line contains an integer $$$T$$$ ($$$1 \leq T \leq 10^6$$$), the number of test cases. Then $$$T$$$ test cases follow.

The first and only line of each test case contains one integer $$$x_i$$$ ($$$-10^7 \leq x_i \leq 10^7$$$), the ID of Sir Humphrey.

Output

For each test case, print a line with one integer: the minimal number of people kept if such a plan exists, or $$$-1$$$ otherwise.

ExampleInput
10
-2
-1
0
1
2
3
4
5
6
7
Output
6
4
3
2
1
1
2
1
2
1

加入题单

算法标签: