#Lutece3379. Muzikant II
Muzikant II
Description
Muzikant, our new tiny musician, is getting more and more talented in music thanks to your efforts in The 14th UESTC Fun Programming Contest. Today, he gets trapped in a new problem when writing his next great symphony and asks for your help. Can you help him out once again?
Let's recall how a score is composed.[1]
- The basic units of scores are notes.
- A bar is made up of several notes, whose duration is of a whole bar and the sum of whose duration is equal to the duration of a bar.
- A score is made up of several bars.
After having composed hundreds of scores, Muzikant finds it difficult to write a bar from his beautiful impromptu random melodies. He then has to settle for the second best -- to choose a consecutive notes from his melody to write a bar. More formally, he will give you a sequence of notes, which is described by an array of integers . The duration of the -th note in the sequence is of a whole bar. Your task is to find out how many ways to choose a consecutive notes from the sequence to make a bar, in other words, to find the number of intervals that notes from the -th to the -th form a bar.
Input
Each test consists of multiple test cases. The first line contains a single integer -- the number of test cases.
In each test case, the first line contains one integer , followed by one further line containing integers $a_1, a_2,\dots, a_N\ (\forall i=1,2,\dots ,N,\ 0\le a_i< N)$, as described above.
It's guaranteed that the sum of isn't greater than .
Output
For each test case, output one line with a single integer -- the number of ways to choose a consecutive interval from the note sequence given by Muzikant.
Samples
5
1
0
4
2 2 2 2
5
1 2 2 2 1
8
1 2 3 4 5 6 7 7
10
0 1 2 3 4 5 6 6 1 1
1
1
2
1
4
Note
Here are the explanations for the example above.
- For the first, second and fourth cases, we have no other choice but use all the notes to make a bar.
- For the third case, since , we can choose notes in interval or to make a bar.
- For the fifth case, there are four ways -- , , and .
Resources
The 22nd UESTC Programming Contest Preliminary
For the sake of simplicity, here we only consider beat bars and notes except ones whose length is not of a whole bar like triplets. ↩︎