-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemp.cpp
86 lines (67 loc) · 1.74 KB
/
temp.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <bits/stdc++.h>
#include <stdlib.h>
#define nl endl
#define el cout<<"\n"
#define ll long long
#define ld long double
#define ull unsigned long long
#define pb push_back
#define pf push_front
#define pob pop_back
#define pof pop_front
#define ff first
#define ss second
#define PLL pair<ll,ll>
#define pii pair<int,int>
#define SetBit(x, k) (x |= (1LL << k))
#define ClearBit(x, k) (x &= ~(1LL << k))
#define CheckBit(x, k) (x & (1LL << k))
#define scn(n) scanf("%d",&n)
#define scnll(n) scanf("%lld",&n)
#define YES cout<<"YES\n"
#define Yes cout<<"Yes\n"
#define yes cout<<"yes\n"
#define NO cout<<"NO\n"
#define No cout<<"No\n"
#define no cout<<"no\n"
#define mod 1000000007LL
#define mod1 1000000007LL
#define mod2 1000000009LL
#define inf 1000000000000000LL
#define N 200000
#define pi 3.14159
#define forn(i, n) for(int i = 0; i < int(n); i++)
#define mod9 90000007
#define fs(n) fixed<<setprecision(int(n))
#define s(n) setprecision(int(n))
#define fastio std::ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
using namespace std;
// * -----------------------------------------------------------
// * run program on cli
// * -----------------------------------------------------------
// g++ temp.cpp -o temp
// or
// g++ temp.cpp -o temp.exe
// .\temp.exe
class Solution {
public:
void solve() {
}
};
int main() {
// ios_base::sync_with_stdio(false); cin.tie(NULL);
//* For External input/output
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
Solution soln;
ll t;
cin >> t;
//* Test case loop
for (ll i = 1; i <= t; i++) {
// cout<<"Case #"<<i<<": ";
// soln.solve();
}
//* Single test
// soln.solve();
return 0;
}