#Lutece0398. Simple Again

Simple Again

Migrated from Lutece 398 Simple Again

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

Suppose you have n days to do something with your ability. The initial value of your ability is zero.

Every single day(suppose the ithi_th day) you can do only one of the following things:

  1. Improve yourself. So the value of your ability will increase aia_i.
  2. Use the current value of your ability to get the same amounts of money.

For example, you have the ability as VV, so this day you can get money VV. However, you cannot improve your ability this day.

Can you program to figure out: in these nn days, how much money can you get at most?

Input

the first line is an integer TT which stands for the number of test cases. For each test case, the first line gives you nn(1n1000001\leq n\leq 100000), which means you have nn days totally. The following line consists of nn integer(s), all of these represent the array aa(0ai1060\leq a_i\leq 10^6), as we mentioned above.

You know, with your ages growing, the ability you can improve everyday is shrinking. So that for each i<ni < n we have aiai+1a_i \geq a_{i+1}.

Output

For each test cases, output the number of money you can get at most.

Samples

1
3
6 5 5
12

Resources

10th SCU Programming Contest Final