Last active
November 10, 2020 06:14
-
-
Save arata-nvm/3075234da171e98d4227bf102139c5be to your computer and use it in GitHub Desktop.
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> | |
using namespace std; | |
using ll = long long int; | |
using ull = unsigned long long int; | |
#define vll vector<ll> | |
#define FOR(i, b, e) for(int i = (b); i < (e); ++i) | |
#define REP(i, e) FOR(i, 0, e) | |
#define SORT(v) sort((v).begin(), (v).end()) | |
#define RSORT(v) sort((v).rbegin(), (v).rend()) | |
#define REV(v) reverse((v).begin(), (v).end()) | |
const ll MOD = 1000000007; | |
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