CANDY3 - Candy III

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.

Problem specification

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 specification

The first line of the input file contains an integer T 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 : the number of children. Each of the next N lines contains the number of candies one child brought.

Output specification

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.

Example

Input:
2

5
5
2
7
3
8

6
7
11
2
7
3
4

Output:
YES
NO
Note: the input file will not exceed 1MB.

Added by:Fudan University Problem Setters
Date:2007-12-01
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO
Resource:IPSC 2006

hide comments
2014-06-09 21:03:05 ANSH KHANNA
pretty vague problem.
2014-06-04 06:16:24 Steven Hans Limantoro
Where are the constraints?
2014-05-20 17:53:20 agaurav77
After so many WAs, finally AC! Remember to use large integers and modulo.
2014-05-17 21:27:59 pvkcse
Got AC after 7 submissions...use long long int of c99...works good...!!!
2014-05-04 12:17:06 who cares
awkard moment when you solve the candy in 1 attempt but wrong ans int this simple question .......so many times but finally .... accepted.. ;)
2014-05-01 08:19:33 Sumit
Damn!!!! USE MOD
2014-04-20 13:40:41 Rishab Banerjee
what kind of ques is this ,,, no constraints given got wa simply because of that,,, the numbers are too large even for long long use %
2014-03-07 19:17:00 ivar.raknahs
use modulo
2014-03-05 05:48:25 Mohit Sehgal
Accepted after 3rd submission made silly mistakes
2014-02-23 17:06:55 Neel Jinwala
long long int
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.