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

문제

According to our long-established tradition, the best statements are those kept short.

Given a sequence of integers, find the largest sum of a consecutive subsequence of odd length.

입력

The first line of input contains the number of test cases $z$. The descriptions of the test cases follow.

The first line of each test case contains the length of the sequence $n$ ($1 \leq n \leq 1\,000\,000$).

The next line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($-10^9 \leq a_i \leq 10^9$), the elements of the sequence.

The total length of all sequences in all test cases does not exceed $5\,000\,000$.

출력

For each test case, output the largest sum on a separate line.

예제 입력 1

1
4
8 -7 9 1

예제 출력 1

10