Skip to content

Instantly share code, notes, and snippets.

@masa5555
masa5555 / File1
Last active September 16, 2020 13:48
競プロ テンプレート
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0; i<n; i++)
typedef long long ll;
typedef pair<int,int> P;
const ll MOD = (int)1e9+7;
const ll INF = MOD*MOD;
const ll powll = 1LL<<1;
int main(){