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
2015-01-16 14:20:49 harshit sharma
test case prceeded by blank line....what does it means
2015-01-11 01:42:30 Raj Kumar Chauhan
ufff.. evertime i am getting some problem here.
anyone plz help <snip>

Last edit: 2023-06-02 23:43:33
2014-12-26 12:01:17 Shubham Khilari
For C try to use unsigned long long instead og just long long int.Worked for me after 5 WAs!!
2014-12-20 06:08:12 Ankur Singh
big input..
2014-12-15 18:58:06 Manu Agarwal
Wrong answer on spoj but working on ideone
<snip>
please tell me the problem

Last edit: 2023-06-02 23:44:08
2014-12-15 10:10:56 arjun
Use the data type LONG LONG INT for all variables, except for the "No. of Test Case".
And its better to initialize them in the 1st loop of the program.

Last edit: 2014-12-15 10:11:35
2014-12-15 05:57:11 swap
seems easy but not that much easy...!! ## USE MODULO PROPERLY , it costed me 1 WA
2014-12-13 04:11:51 slim shadyy
Finally AC!!..easy problem ..without using % operation..

Last edit: 2014-12-13 04:12:58
2014-12-12 16:53:42 Himanshu
Consider using long long int for "no of test cases T" and "no of children N".
2014-12-08 15:17:43 vedsar
what is the range of N?
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.