
广州大学ACM新生训练选题
幻风帝影
切勿浮沙筑高台
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
第一期练习题 - 第一题
第一题 1. String Task from CodeForces #include <iostream> using namespace std; int main(void) { char temp, array[201]; int count, i; count = i = 0; while(1) { temp = ci原创 2018-12-05 13:46:37 · 391 阅读 · 0 评论 -
第二期练习题 - 第二题
Climbing Worm Time limit 1000 ms Memory limit 32768 kB Problem Description An inch worm is at the bottom of a well n inches deep. It has enough energy to climb u inches every minute, but then has to ...原创 2018-12-14 16:58:41 · 253 阅读 · 0 评论 -
第一期练习题 - 第八题
A + B Problem Too from Virtual Judge #include <iostream> using namespace std; int main(void) { int a, b; while(cin >> a >&am原创 2018-12-07 02:39:27 · 211 阅读 · 0 评论 -
第一期练习题 - 第七题
The volume of a sphere from Virtual Judge #include <stdio.h> #define PI 3.1415927 int main(void) { double r; while(scanf("%lf", &r) != EOF) {原创 2018-12-07 02:25:46 · 212 阅读 · 0 评论 -
第一期练习题 - 第六题
The sort of ASCII from Virtual Judge #include <iostream> using namespace std; int main(void) { char array[3], temp; int i, j, min; bool flag = false; while(cin &原创 2018-12-07 02:03:20 · 225 阅读 · 0 评论 -
第一期训练题 - 第五题
Sort from Virtual Judge #include <iostream> #include <cstdio> #include <cstdlib> using原创 2018-12-07 01:13:19 · 274 阅读 · 0 评论 -
第一期练习题 - 第四题
A + B Problem from Virtual Judge #include <iostream> using namespace std; int main(void) { int a, b; while(cin >> a &amp原创 2018-12-05 15:24:37 · 252 阅读 · 0 评论 -
第一期练习题 - 第三题
Stones on the Table from CodeForces #include <iostream> using namespace std; int main(void) { int array[50]; int count, i, n; count = 0; cin >&am原创 2018-12-05 14:44:27 · 224 阅读 · 0 评论 -
第一期练习题 - 第二题
George and Accommodation from CodeForces #include <iostream> using namespace std; int main(void) { int n, count, now, max; int i; count = 0; cin >&am原创 2018-12-05 14:20:31 · 256 阅读 · 0 评论 -
第二期训练题 - 第三题
整除的尾数 Time limit 1000 ms Memory limit 32768 kB 问题描述 一个整数,只知道前几位,不知道末二位,被另一个整数除尽了,那么该数的末二位该是什么呢? 输入 输入数据有若干组,每组数据包含二个整数a,b(0<a<10000, 10<b<100),若遇到0 0则处理结束。 输出 对应每组数据,将满足条件的所有尾数在一行内输出,格式见样原创 2018-12-14 17:36:16 · 271 阅读 · 0 评论