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

hdu 5585 Numbers

时间:2015-11-30 02:15:22      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5585

思路:对于2和5只须看最后一位数,对于三看所有位的数字之和就行

 1 #include<stdio.h>
 2 #include<math.h>
 3 #include<stdlib.h>
 4 #include<string.h>
 5 #include<iterator>
 6 #include<iostream>
 7 #include<algorithm>
 8 #include<set>
 9 #include<map> 
10 using namespace std;
11 
12 int main()
13 {
14     string str;
15     __int64 sum,len,a;
16     while(cin>>str)
17     {
18         sum=0;
19         len=str.length();
20         for(int i=0;i<len;i++)
21             sum+=str[i]-0;
22         a=str[len-1]-0;
23         if(a%2==0 || a%5==0 || sum%3==0)
24             printf("YES\n");
25         else
26             printf("NO\n");
27         //cout<<sum<<endl;
28     }
29     return 0;
30 }

 

hdu 5585 Numbers

标签:

原文地址:http://www.cnblogs.com/pter/p/5006069.html

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