标签:style blog http color os io strong ar
这次就看了第一题,而且还做得够呛。
到最后都不知道正确的做法。
看完题解之后有一种想自杀的感觉
1.HDU 4956 - Poor Hanamichi (。。找规律 )
可以证明,真的不知道怎么证明,别人说是打表
1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 using namespace std; 5 int T; 6 7 bool check(__int64 t) 8 { 9 __int64 s1 = t, s2 = t; 10 __int64 sum1 = 0, sum2 = 0; 11 while(s1) 12 { 13 sum1 += s1%10; 14 s1 /= 100; 15 } 16 s2 /= 10; 17 while(s2) 18 { 19 sum2 += s2%10; 20 s2 /= 100; 21 } 22 if(sum1 - sum2 == 3) 23 return true; 24 else 25 return false; 26 } 27 28 int main() 29 { 30 __int64 l, r; 31 scanf("%d",&T); 32 while(T--) 33 { 34 scanf("%I64d %I64d",&l,&r); 35 __int64 p = l; 36 int flag = 1; 37 while(p <= 10000 + l && p <= r) 38 { 39 if(!check(p) && (p % 11 == 3)) 40 { 41 printf("%I64d\n",p); 42 flag = 0; 43 break; 44 } 45 p++; 46 } 47 if(flag) 48 puts("-1"); 49 } 50 }
标签:style blog http color os io strong ar
原文地址:http://www.cnblogs.com/BigBallon/p/3918456.html