#Lutece0700. Sasami's Power

Sasami's Power

Migrated from Lutece 700 Sasami's Power

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

As we all know, Sasami is a professional Otaku. This month, the most famous animation shop ANIMATE hosts a new promotion activity, and she participates.

There's a sequence AA with NN numbers in ANIMATE's promotion activity board, which is numbered A0,A1,,AN1A_0,A_1,\cdots ,A_{N−1}. Player should figure out another non-decreasing sequence BB in 55 seconds, which has N+1N+1 numbers and satisfies that Bi+Bi+1=AiB_i+B_{i+1}=A_i for any ii (0i<N0\leq i < N). Note that the sequence BB is not unique. In fact,one distinct sequence would get one special prize. Two sequences are different if they have different elements on the same index.(e.g. [1,2,4][1, 2, 4] differs from [1,2,5][1, 2, 5]).

Sasami can use the power to get one answer immediately(if it exists), but how could a power-holder get only one imperfect prize? Therefore, she wonder show many different sequences totally that exist to get all the prizes.

Input

The first line of the input is TT(T10T\leq 10), the number of test cases.

Each test case starts with one integer NN (3N1000003\leq N\leq 100000), which represents the length of sequence AA.

The following line contains NN integers, indicating the sequence AA.Each element of AA is less than 10910^9.

Output

For each test case, you should output the answer in one line.

Samples

1
3
1 9 16
4

Note

All the valid non-decreasing sequences are as follows:

  1. -2 3 6 10
  2. 0 1 8 8
  3. -1 2 7 9
  4. -3 4 5 11

Resources

The 7th BUPT Collegiate Programming Contest