模板
1. 程序格式(codeforces)
| #include <bits/stdc++.h>
using namespace std;
using ll = long long;
void solve(void) {
/* Coding begins here. */
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll test;
while (test --) {
solve();
}
return 0;
}
|
Tips: 若评论区主题未随文档主题同步, 刷新页面即可.