摘要: A.直角三棱锥 枚举推式子 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long LL; 4 LL gcd(LL a, LL b){ 5 return a % b ? gcd(b, a % b) : b; 6 } 阅读全文
posted @ 2018-04-20 22:14 Aguin 阅读(311) 评论(0) 推荐(1) 编辑