摘要:
A题写炸了。 A:一开始写了个字符串没算复杂度T了,实际上从高到低判断即可。 // Author: levil #include<bits/stdc++.h> using namespace std; typedef long long LL; typedef unsigned long long 阅读全文
摘要:
感觉这场题面有点绕 A:先把能除2的都除2,然后最后再把最大的不断翻倍即可 // Author: levil #include<bits/stdc++.h> using namespace std; typedef long long LL; typedef unsigned long long U 阅读全文
摘要:
A:签到 // Author: levil #include<bits/stdc++.h> using namespace std; typedef long long LL; const int N = 1e6 + 5; const int M = 1e6 + 5; const LL Mod = 阅读全文