摘要:
传送门: https://atcoder.jp/contests/abc182 atcoder 好久没补了Orz,今天数据结构、马原课写了一下( A #include<bits/stdc++.h> using namespace std; int main(){ int a, b; cin>>a>> 阅读全文
摘要:
传送门:https://codeforces.com/contest/1549 A int main(){ int T; cin>>T; while(T--){ int x; cin>>x; cout<<2<<' '<<x-1<<endl; } return 0; } B 贪心,能直走就直走,因为是 阅读全文