摘要:
索引: 类型取值范围,lower_bound,离散化,整除,快读,对拍,测时间,随机数,随机树 类型取值范围: unsigned int 0~4294967295 int -2147483648~2147483647 unsigned long 0~4294967295 long -21474836 阅读全文
摘要:
ARC199 A: 题意:给定一个n<=1018, 找到n=A*2B+C,输出A+B+C #include <iostream> #include <cstdio> using namespace std; long long n,two=1,now,ans,i; int main() { scan 阅读全文
摘要:
ABC196 A #include <iostream> #include <cstdio> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; cout<<(b-c)<<endl; return 0; } B #inclu 阅读全文