#P1984C1. Magnitude (Easy Version)

Magnitude (Easy Version)

Description

The two versions of the problem are different. You may want to read both versions. You can make hacks only if both versions are solved.

You are given an array aa of length nn. Start with c=0c = 0. Then, for each ii from 11 to nn (in increasing order) do exactly one of the following:

  • Option 11: set cc to c+aic + a_i.
  • Option 22: set cc to c+ai|c + a_i|, where x|x| is the absolute value of xx.

Let the maximum final value of cc after the procedure described above be equal to kk. Find kk.

The first line contains a single integer tt (1t1041 \leq t \leq 10^4) — the number of test cases.

The first line of each test case contains a single integer nn (2n21052 \leq n \leq 2 \cdot 10^5).

The second line of each case contains nn integers a1a_1, a2a_2, a3a_3, \ldots, ana_n (109ai109-10^9 \leq a_i \leq 10^9).

The sum of nn over all test cases does not exceed 31053 \cdot 10^5.

For each test case, output a single integer — the value of kk.

Input

The first line contains a single integer tt (1t1041 \leq t \leq 10^4) — the number of test cases.

The first line of each test case contains a single integer nn (2n21052 \leq n \leq 2 \cdot 10^5).

The second line of each case contains nn integers a1a_1, a2a_2, a3a_3, \ldots, ana_n (109ai109-10^9 \leq a_i \leq 10^9).

The sum of nn over all test cases does not exceed 31053 \cdot 10^5.

Output

For each test case, output a single integer — the value of kk.

Sample Input 1

5
4
10 -9 -3 4
8
1 4 3 4 1 4 3 4
3
-1 -2 -3
4
-1000000000 1000000000 1000000000 1000000000
4
1 9 8 4

Sample Output 1

6
24
6
4000000000
22

Note

In the first test case, if we set cc to its absolute value every time we add to it, we end up with 66. It can be shown that this is the maximum result.

In the second test case, taking the absolute value will never change anything, so we can just sum the array without doing anything to get 2424.

In the third test case, it is optimal to wait until the end to set cc to its absolute value, resulting in an answer of 66.