powerful competitive programming workspace template
This commit is contained in:
24
template.cpp
Normal file
24
template.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user