Hide

Problem D
Another Candies

A class went to a school trip. And, as usually, all $N$ kids have got their backpacks stuffed with candy. But soon quarrels started all over the place, as some of the kids had more candies than others. Soon, the teacher realized that he has to step in: "Everybody, listen! Put all the candies you have on this table here!"

Soon, there was quite a large heap of candies on the teacher’s table. "Now, I will divide the candies into $N$ equal heaps and everyone will get one of them." announced the teacher.

"Wait, is this really possible?" wondered some of the smarter kids.

Task

You are given the number of candies each child brought. Find out whether the teacher can divide the candies into $N$ exactly equal heaps. (For the purpose of this task, all candies are of the same type.)

Input

The first line of the input file contains an integer $T, 1\le T \le 100$ specifying the number of test cases. Each test case is preceded by a blank line.

Each test case looks as follows: The first line contains $N, 1\le N \le 20\, 000$ – the number of children. Each of the next $N$ lines contains the number of candies one child brought. Each child has less than $2^{63}$.

Output

For each of the test cases output a single line with a single word "YES" if the candies can be distributed equally, or "NO" otherwise.

Sample Input 1 Sample Output 1
2

5
5
2
7
3
8

6
7
11
2
7
3
4
YES
NO

Please log in to submit a solution to this problem

Log in