-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.cpp
More file actions
40 lines (30 loc) · 765 Bytes
/
Copy pathtest.cpp
File metadata and controls
40 lines (30 loc) · 765 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
#include <bits/stdc++.h>
using namespace std;
#define INF (int)1e9
#define LONGINF (long)1e18
#define MEM(arr, val) memset(arr, (val), sizeof(arr))
#define fastio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
const int MOD = 1000000007; // 10^9 - 7
void initArray(int arr[], int length, int val) {
for (int i = 0; i < length; i++)
arr[i] = val;
return;
}
void solve() {
}
int solve(int arg) {
}
int main() {
fastio;
//ifstream cin("in.txt");
//ofstream cout("out.txt"); // cout to file
//freopen("out.txt","w",stdout); // use this one for printf to file
int n, ans;
cin >> n;
//int arr[n] = {0};
//for(int i = 0; i < n; i++)
// cin >> arr[i];
cout << ans << endl;
//printf("%d", ans);
return 0;
}