摘要: 题目链接水题,不解释。 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cstdlib> 5 #include <map> 6 #include <queue> 7 #define ll __int64 8 using namespace std; 9 ll gcd(ll a,ll b)10 {11 return b == 0?a:gcd(b,a%b);12 }13 int main()14 {15 int t;16 ll 阅读全文
posted @ 2012-10-12 09:48 Naix_x 阅读(205) 评论(0) 推荐(0) 编辑