
HDU_ACM_STEP
文章平均质量分 73
x_zht
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HDU1286_找新朋友
HDU_1286 找新朋友 欧拉函数原创 2016-01-26 14:06:46 · 245 阅读 · 0 评论 -
HDU_1060_leftmostdigt
题目: Problem Description Given a positive integer N, you should output the leftmost digit of N^N. Input The input contains several test cases. The first line of the input is a single原创 2016-01-27 09:40:42 · 229 阅读 · 0 评论 -
HDU1443_Joseph
约瑟夫环。 AC之路, 其修远兮。 #include int main() { int num; int record[16] = {0}; //打个表,避免多次出现相同的输入且计算量过大 while ((scanf("%d", &num) != EOF) && num) { if (record[num] != 0) { printf("%d\n",转载 2016-01-31 19:00:16 · 352 阅读 · 0 评论