码迷,mamicode.com
首页 > 其他好文 > 详细

SPOJ Problem 2148:Candy III

时间:2015-03-05 19:15:03      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

和I一样水,只不过要注意的是输入数据会特别大,所以应该先取模再相加。

#include<cstdio>
long long  n,s,t,x,i;
int main(){
    scanf("%lld",&n);
    while(n--){
        s=0;
        scanf("%lld",&t);
        for (i=1;i<=t;i++){
            scanf("%lld",&x);
            s=(s+x%t)%t;
        }    
    if (s)printf("NO\n");else printf("YES\n");
    }
}

 

SPOJ Problem 2148:Candy III

标签:

原文地址:http://www.cnblogs.com/moris/p/4316387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!