A 思路 掌握 x^0=x 这个性质就可以秒了 题解 #include <bits/stdc++.h> using namespace std; const int N=1e5+10; typedef long long ll; int t,n; int k; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>k; cout<<k<<' '<<0<<endl; return 0; } B 思路 按照题目意思模拟即可 题解 #includ...