
数论
binggo1226
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
51nod_1179_计算N个数之间两两之间GCD的最大值
 #include<原创 2017-07-24 16:09:19 · 1423 阅读 · 0 评论 -
51nod_1247可能的路径
#include #include #include #include #include #include #include using namespace std; int t; long long a, b; long long c, d; long long gcd(long long x, long long y) { return y == 0 ? x : gcd(y, x%y)原创 2017-07-24 16:28:25 · 336 阅读 · 0 评论