摘要: A - 2^N 签到 #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; cout << ( 1 << n ) << endl; } B - Batters 按照要求模拟一下 n = int(input 阅读全文
posted @ 2022-06-25 13:17 PHarr 阅读(36) 评论(0) 推荐(0) 编辑