Aghiad and Aram love math so much. They consider playing video games, sports, and any other activity rather than math a waste of time. But sometimes they get bored from their math problems and want to do something fun without wasting their time. To kill boredom, they came up with a math game that will let them have some fun and waste no time. They write down an array consisting of $$$n$$$ integers. They play in turns, in each turn:
The first line of the input contains a single integer $$$t$$$ ($$$1 \le T \le 10^4 $$$) — the number of test cases in the test.
The first line of each case contains a single integer $$$n$$$ ($$$2 \le n \le 2 \cdot 10^5$$$) — the number of elements in the array.
The second line of each case contains $$$n$$$ integers $$$a_1, a_2, \dots, a_n$$$ ($$$1 \le a_j \le 10^9$$$) — the elements of the array.
It is guaranteed that the sum of the values of $$$n$$$ over all test cases does not exceed $$$2 \cdot 10^5$$$.
For each test case, output the score that Aghiad and Aram would achieve if they play the game.
232 1 133 3 2
1 3
In the first testcase:
In the second testcase, all the pairs satisfy the condition of getting a point.
| Name |
|---|


