-
Notifications
You must be signed in to change notification settings - Fork 1
/
CP2.cpp
50 lines (49 loc) · 1.14 KB
/
CP2.cpp
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
49
50
#pragma GCC optimize ("Ofast")
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
#define PI 3.14159265358979323846
#define REP(i,n) for(ll i=0;i<n;i++)
#define FOR(i,l,r) for(ll i=l;i<r;i++)
#define Endl cout<<"\n";
#define YES cout<<"YES"<<endl
#define NO cout<<"NO"<<endl
#define Yes cout<<"Yes"<<endl
#define No cout<<"No"<<endl
#define scan_vector(v) for (auto &it: v) { cin>>it; }
#define print_vector(v) for (auto &it: v) { cout<<it<<" "; } cout<<endl;
#define print_map(m) for (auto &it: m) { cout<<it.first<<"->"<<it.second<<"\n"; }
#define deb(x) cout<<#x<<"="<<x<<endl;
#define all(x) x.begin(),x.end()
typedef long long ll;
typedef unsigned long long ull;
const ll MOD=(1e9+7);
void fastIO()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
ll mod(ll n)
{
return ((n%MOD+MOD)%MOD);
}
void solve()
{
}
int main()
{
fastIO();
cout<<fixed<<setprecision(10);
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);freopen("output.txt","w",stdout);
#endif
ll t=1;
cin>>t;
ll T=t;
while(t--)
{
// cout<<"Case #"<<T-t<<": ";
solve();
}
}