Codeforces
文章平均质量分 85
sdogsq
这个作者很懒,什么都没留下…
展开
-
Codeforces 394D Physical Education and Buns
#include #include #define rep(i,l,r) for (int i=l;i<=r;++i)int getx(){ char c;int x;bool pd=false; for (c=getchar();c!='-'&&(c'9');c=getchar()); if (c=='-') c=getchar(),pd=true; for (x=0;c>='0'原创 2014-02-22 16:14:04 · 1298 阅读 · 4 评论 -
Codeforces 392C Yet Another Number Sequence
题目链接:http://codeforces.com/problemset/problem/392/C题目简述:F1 = 1, F2 = 2, Fi = Fi - 1 + Fi - 2 (i > 2).We'll define a new number sequence Ai(k) by the formula:Ai(k) = Fi × ik (i ≥ 1).原创 2014-02-24 17:14:28 · 1163 阅读 · 0 评论 -
Codeforces 55D Beautiful numbers
题目链接:http://codeforces.com/contest/55/problem/D题目简述:求[a,b]区间内整数n,n能被他所有非零数位上的数整除。看见整除,肯定想的就是%i=0,所以要记他%1~9的余数,但这明显是不科学的。。于是乎,只需要记下1~9的LCM,LCM=2520,这样状态就小了很多了,到最后再分开模。但是我怎么知道他有1~9中的哪些?。。可以考原创 2014-02-26 14:27:08 · 667 阅读 · 0 评论