Last active
February 8, 2020 09:49
-
-
Save serihiro/695420b37c1f30e3788f0eea6fd5c603 to your computer and use it in GitHub Desktop.
My Cpp template for competitive programing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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