競プロ用テンプレート
#include <bits/stdc++.h> | |
#define int long long | |
#define FOR(i, a, b) for (int i = (a); i < (b); ++i) | |
#define DEC(i, a, b) for (int i = (a); i > (b); --i) | |
#define REP(i, n) for (int i = 0; i < (n); ++i) | |
#define pb push_back | |
#define ALL(obj) (obj).begin(), (obj).end() | |
#define debug(x) cerr << #x << ": " << x << '\n' | |
using namespace std; | |
typedef long long ll; | |
const int INF = (int)1e9; | |
const int MOD = (int)1e9 + 7; | |
const ll LINF = (int)1e18; | |
const double EPS = 1e-9; | |
signed main(){ | |
cin.tie(nullptr); | |
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