该文被密码保护。 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; #define int long long const int N = 1e7 + 10; int tot; int ntp[N]; int primes[N]; void sieve () { ntp[1] 阅读全文
摘要:
T5 n阶乘的最小公倍数 #include <bits/stdc++.h> using namespace std; #define int long long int gcd(int a,int b) { return b == 0 ? a : gcd(b,a % b); } int lcm(in 阅读全文
摘要:
T4 最大三位数乘积回文数 #include <bits/stdc++.h> using namespace std; #define int long long bool judge(int x) { int nx = x; int t = x; int res = 0; while(t) { r 阅读全文