-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
44 lines (34 loc) · 760 Bytes
/
template.cpp
File metadata and controls
44 lines (34 loc) · 760 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
#include<bits/stdc++.h>
#define ll long long int
#define ld long double
#define pll pair<ll,ll>
#define vll vector<ll>
#define pb push_back
#define inf 1000000000000000000
#define endl "\n"
#define MAX5 100005
#define MAX6 1000006
#define MOD 1000000007
#define fastIO ios_base::sync_with_stdio(0);\
cin.tie(NULL);\
cout.tie(NULL)
using namespace std;
void solve()
{
}
int main()
{
fastIO;
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","r",stdout);
#endif
ll t=1;
cin>>t;
while(t--)
solve();
#ifndef ONLINE_JUDGE
cout<<endl<<"Time Elapsed: " << 1.0*clock() / CLOCKS_PER_SEC << " sec"<<endl;
#endif
return 0;
}