-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgcc_template_minimal.cpp
More file actions
32 lines (25 loc) · 869 Bytes
/
gcc_template_minimal.cpp
File metadata and controls
32 lines (25 loc) · 869 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
#include <bits/stdc++.h>
using namespace std;
#define READ(x) freopen(x, "r", stdin)
#define WRITE(x) freopen(x, "w", stdout)
// Input Methods
inline int32_t srcInt32() { int ret; scanf("%d", &ret); return ret; }
inline uint32_t srcUInt32() { uint32_t ret; scanf("%u", &ret); return ret; }
inline int64_t srcInt64() { int64_t ret; scanf("%lld", &ret); return ret; }
inline uint64_t srcUInt64() { uint64_t ret; scanf("%llu", &ret); return ret; }
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
//READ("../input.txt");
//WRITE("output.txt");
int64_t TC, tc;
double cl = clock();
TC = srcInt64();
for (tc = 1; tc <= TC; tc++) {
// Start code for a test case
}
cl = clock() - cl;
fprintf(stderr, "Total Execution Time = %lf seconds\n", cl / CLOCKS_PER_SEC);
return 0;
}