-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
executable file
·48 lines (39 loc) · 828 Bytes
/
template.cpp
File metadata and controls
executable file
·48 lines (39 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <bits/stdc++.h>
#define ONLINE_JUDGE freopen("../input","r",stdin); freopen("../output","w",stdout);
#define MAX 100001
#define ll long long
#define ld long double
#define pb push_back
#define pii pair<int,int>
#define vi vector<int>
#define all(a) (a).begin(),(a).end()
#define F first
#define S second
#define sz(x) (int)x.size()
#define rep(i,a,b) for(int i=a;i<b;i++)
#define M 1000000007
#define endl '\n'
#define debug(x) cerr << #x << " = " << x << endl;
using namespace std;
void MOD(ll &x)
{
if (x >= M) x -= M;
if (x < 0) x += M;
}
void solve()
{
}
int main()
{
ONLINE_JUDGE
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t=1;
// cin>>t;
while(t--)
{
solve();
}
return 0;
}