-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsol.cpp
More file actions
51 lines (45 loc) · 861 Bytes
/
sol.cpp
File metadata and controls
51 lines (45 loc) · 861 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
48
49
50
51
#ifndef ONPC
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#endif
#include <algorithm>
#include <array>
#include <stack>
#include <bitset>
#include <cassert>
#include <chrono>
#include <climits>
#include <cmath>
#include <complex>
#include <cstring>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <vector>
#include <fstream>
using namespace std;
// Debugging macro
#ifdef ONPC
#include "DEBUG.h"
#else
#define debug(...) // No-op for production
#endif
void solve() {
cout << "clang works 3!" << '\n';
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
#ifdef ONPC
freopen("inputf.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
int t = 1;
cin >> t;
while(t--) solve();
}