powerful competitive programming workspace template

This commit is contained in:
xkm
2026-04-14 00:24:53 +08:00
parent b281762f0e
commit 48e23609d4
8 changed files with 131 additions and 0 deletions

24
template.cpp Normal file
View File

@@ -0,0 +1,24 @@
#include <bits/stdc++.h>
using namespace std;
using int64 = long long;
const int64 inf = 0x3f3f3f3f;
const int64 INF = 0x3f3f3f3f3f3f3f3f;
const int Mod = 1e9 + 7;
const int N = 3e5 + 10;
void solve() {
cout << "Hello world" << '\n';
}
signed main() {
#ifndef LOCAL
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#endif
int t = 1;
// cin >> t;
while (t--)
solve();
return 0;
}