-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmp.cpp
More file actions
47 lines (36 loc) · 860 Bytes
/
tmp.cpp
File metadata and controls
47 lines (36 loc) · 860 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
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
#define FOR(i, a, b) for (int i=a; i<(b); i++)
#define F0R(i, a) FOR(i, 0, a)
#define ROF(i, a, b) for (int i = (a); i >= (b); --i)
#define R0F(i, a) ROF(i, a, 0)
#define trav(a,x) for (auto& a : x)
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define f first
#define s second
#define all(x) x.begin(), x.end()
#define ins insert
#define endl '\n'
const int maxn = 1e5+5;
const int inf = 2e9+2;
const int mod = 1e7+6;
void solve() {
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(nullptr);
// freopen("filename.in", "r", stdin);
// freopen("filename.out", "w", stdout);
int T;
cin >> T;
while(T--) {
solve();
}
// solve();
}