-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.cpp
More file actions
39 lines (31 loc) · 782 Bytes
/
code.cpp
File metadata and controls
39 lines (31 loc) · 782 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
/*Author : RAJ ROY*/
#include <bits/stdc++.h>
using namespace std;
#ifndef ONLINE_JUDGE
#include "Debug.h"
#else
#define debug(...) 42
#endif
#define endl "\n"
#define ll long long
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2,fma")
/*****************************************************************************************************************************************/
void solve() {}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t = 1;
// int t;
// cin >> t;
for (int i = 1; i <= t; i++) {
// cout << "Case #" << i << ":"<< " ";
solve();
}
return 0;
}