基础模版:
#include <bits/stdc++.h> #define endl '\n' #define int long long using namespace std; void solve() { // 解题 } signed main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int t = 1; cin >> t; // 单测则注释 while (t--) solve(); return 0; }