#P10924. [2015杭电多校]He is Flying

[2015杭电多校]He is Flying

He is Flying

Problem Description

JRY wants to drag racing along a long road. There are nn sections on the road, the ii-th section has a non-negative integer length sis_i. JRY will choose some continuous sections to race (at an unbelievable speed), so there are totally n(n+1)2\frac{n(n+1)}{2} different ways for him to ride. If JRY rides across from the ii-th section to the jj-th section, he would gain ji+1j-i+1 pleasure. Now JRY wants to know, if he tries all the ways whose length is ss, what's the total pleasure he can get. Please be aware that in the problem, the length of one section could be zero, which means that the length is so trivial that we can regard it as 00.

Input

The first line of the input is a single integer T (T=5)T\ (T=5), indicating the number of testcases. For each testcase, the first line contains one integer nn. The second line contains nn non-negative integers, which mean the length of every section. If we denote the total length of all the sections as ss, we can guarantee that 0s500000 \le s \le 50000 and 1n1000001 \le n \le 100000.

Output

For each testcase, print s+1s+1 lines. The single number in the ii-th line indicates the total pleasure JRY can get if he races all the ways of length i1i-1.

Sample Input

2
3
1 2 3
4
0 1 2 3

Sample Output

0
1
1
3
0
2
3
1
3
1
6
0
2
7

Author

XJZX

Source

2015 Multi-University Training Contest 2