Problem2346--CF1692B-All Distinct

2346: CF1692B-All Distinct

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Sho has an array aa consisting of nn integers. An operation consists of choosing two distinct indices ii and jj and removing aiai and ajaj from the array.

For example, for the array [2,3,4,2,5][2,3,4,2,5], Sho can choose to remove indices 11 and 33. After this operation, the array becomes [3,2,5][3,2,5]. Note that after any operation, the length of the array is reduced by two.

After he made some operations, Sho has an array that has only distinct elements. In addition, he made operations such that the resulting array is the longest possible.

More formally, the array after Sho has made his operations respects these criteria:

  • No pairs such that (i<ji<j) and ai=ajai=aj exist.
  • The length of aa is maximized.

Output the length of the final array.

Input

The first line contains a single integer tt (1≤t≤1031≤t≤103) — the number of test cases.

The first line of each test case contains a single integer nn (1≤n≤501≤n≤50) — the length of the array.

The second line of each test case contains nn integers aiai (1≤ai≤1041≤ai≤104) — the elements of the array.

Output

For each test case, output a single integer — the length of the final array. Remember that in the final array, all elements are different, and its length is maximum.

Sample Input Copy

4
6
2 2 2 3 3 3
5
9 1 9 9 1
4
15 16 16 15
4
10 100 1000 10000

Sample Output Copy

2
1
2
4

Source/Category