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.

hide comments
Lai Manh Tuan: 2013-01-11 17:29:18

Easy but annoying problem

Jorian: 2013-01-03 17:08:35

my code is run on ideone ...but spoj say wrong ans........why?
plz suggest the appropriate code

Shubhdeep: 2012-12-30 17:26:32

o_O long long not enough try to minimize the sum

VARUN KUMARE: 2012-12-26 14:36:28

thanks cupu............

Aayush: 2012-12-21 11:10:17

Do all the input numbers fit in long long? (Never mind the sum.)

Last edit: 2013-01-08 18:52:06
arijit pande: 2012-12-12 06:10:55

Weirdo problem,really got AC in C same algo giving NZEC in python, some problem with newlines I guess....

Haijun Deng: 2012-12-12 00:50:11

Still WA with long long

xyb: 2012-11-30 21:59:52

The input is a very large number (unfortunately, the problem doesn't supply such info), so you must use long long.

Akshay Kumar: 2012-11-30 16:40:22

do take care of the blank line at the beginning of each input

Jack Sparrow: 2012-11-25 09:54:34

<No code pasting in the comments>

Last edit: 2012-12-07 08:37:11

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