-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.cpp
45 lines (38 loc) · 1.12 KB
/
template.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
/*
* Developed By : Shivam Bairoliya
*/
#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
typedef unsigned long long ull;
typedef long double lld;
typedef long long ll;
#define vi vector<int>
#define vl vector<long long>
#define MOD 1000000007
#define fastio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define readNumbersArray(n, arr) for(int i = 0; i < n; i++){cin>>arr[i];}
#define readNumbersArray1(n, arr) for(int i = 0; i < n; i++){cin>>arr[i + 1];}
/************************************* SOLUTION BELOW ***************************************/
void solve() {
}
int32_t main() {
fastio();
#ifndef ONLINE_JUDGE
freopen("../input.txt", "r", stdin);
freopen("../output.txt", "w", stdout);
freopen("../error.in", "w", stderr);
auto start = high_resolution_clock::now();
#endif
int t = 1;
cin >> t;
while (t--) {
solve();
}
#ifndef ONLINE_JUDGE
auto stop = high_resolution_clock::now();
auto duration = duration_cast<milliseconds>(stop - start);
cout << "Time taken for execution: "
<< duration.count() << " ms" << endl;
#endif
}