Skip to content

Instantly share code, notes, and snippets.

@serihiro
Last active February 8, 2020 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serihiro/695420b37c1f30e3788f0eea6fd5c603 to your computer and use it in GitHub Desktop.
Save serihiro/695420b37c1f30e3788f0eea6fd5c603 to your computer and use it in GitHub Desktop.
My Cpp template for competitive programing.
#include <bits/stdc++.h>
#define REP(i, x) REPI(i, 0, x)
#define REPI(i,a,b) for(int i=int(a);i<int(b);++i)
#define ALL(x) (x).begin(), (x).end()
typedef long long ll;
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment