摘要:
"Goldbach" 判断大素数 include include using namespace std; define N 10000 typedef unsigned long long ll; ll ModMul(ll a, ll b, ll n) { //快速积取模 a b%n ll ans 阅读全文
摘要:
"Reversion Count" 解析:题目数字的长度最大为 99,因此使用字符串处理,那么必然这些数存在某些规律。对于数 a (XYZW) 和数 b (WZYX),原式 = (1000X + 100Y + 10Z +W 1000W 100Z 10Y X) / 9 = (999X + 90Y 90 阅读全文
摘要:
"Nise Anti AK Problem" include using namespace std; int b[1000]; int main() { ios::sync_with_stdio(false); int n; cin n; while(n ) { int m; cin m; int 阅读全文