-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0temp.cpp
35 lines (33 loc) · 784 Bytes
/
0temp.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
#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef vector<int> vi;
typedef vector<string> vs;
typedef pair<int, int> pi;
#define F first
#define S second
#define pb push_back
#define mp make_pair
#define Print(a) for(int i = 0; i < a.size(); i++) {cout << a[i] << " ";}
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define endl "\n"
#define YES cout << "YES\n";
#define NO cout << "NO\n";
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
/*
freopen("wtf.in", "r", stdin);
freopen("wtf.out", "w", stdout);
*/
int t; cin >> t;
while (t--) {
int n; cin >> n;
vi a(n);
for(int i = 0 ; i < n ; i++) {
cin >> a[i];
}
}
return 0;
}