Skip to content

Instantly share code, notes, and snippets.

@arata-nvm
Last active November 10, 2020 06:14
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 arata-nvm/3075234da171e98d4227bf102139c5be to your computer and use it in GitHub Desktop.
Save arata-nvm/3075234da171e98d4227bf102139c5be to your computer and use it in GitHub Desktop.
#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