题库练习 Eating Candies
← 上一题 下一题 →

A15017 | Eating Candies

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

There are $n$ candies put from left to right on a table. The candies are numbered from left to right. The $i$ -th candy has weight $w_i$ . Alice and Bob eat candies.

Alice can eat any number of candies from the left (she can't skip candies, she eats them in a row).

Bob can eat any number of candies from the right (he can't skip candies, he eats them in a row).

Of course, if Alice ate a candy, Bob can't eat it (and vice versa).

They want to be fair. Their goal is to eat the same total weight of candies. What is the most number of candies they can eat in total?

输入格式

The first line contains an integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases.

The first line of each test case contains an integer $n$ ( $1 \leq n \leq 2\cdot10^5$ ) — the number of candies on the table.

The second line of each test case contains $n$ integers $w_1, w_2, \dots, w_n$ ( $1 \leq w_i \leq 10^4$ ) — the weights of candies from left to right.

It is guaranteed that the sum of $n$ over all test cases does not exceed $2\cdot10^5$ .

输出格式

For each test case, print a single integer — the maximum number of candies Alice and Bob can eat in total while satisfying the condition.

输入输出样例

输入 #1
4
3
10 20 10
6
2 1 4 2 4 1
5
1 2 4 8 16
9
7 3 20 5 15 1 11 8 10
输出 #1
2
6
0
7
C++ 编辑器
输入
输出