-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNormal.cpp
More file actions
62 lines (50 loc) · 1.22 KB
/
Normal.cpp
File metadata and controls
62 lines (50 loc) · 1.22 KB
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
52
53
54
55
56
57
58
59
60
61
62
#include <bits/stdc++.h>
using namespace std;
typedef double dl;
typedef long long ll;
typedef vector<int> v;
typedef vector<ll> vll;
typedef map<int, int> mp;
typedef pair<int, int> ii;
typedef unsigned long long ull;
#define fi first
#define endl "\n"
#define se second
#define pb push_back
#define MOD 1000000007
#define maximum INT_MAX
#define sqr(a) ((a) * (a))
#define all(n) (n).begin(), (n).end()
#define rall(a) (a).rbegin(), (a).rend()
#define mas(n) for (int i = 0; i < n; i++)
#define nir(arr) {for (auto & x: arr) cin >>x;}
#define PI 3.1415926535897932384626433832795028841971
#define max3(a, b, c) max(c, max(a, b))
#define min3(a, b, c) min(c, min(a, b))
#define max4(a, b, c, d) max(d, max(c, max(a, b)))
#define min4(a, b, c, d) min(d, min(c, min(a, b)))
const ll mx = 1e5 + 123;
ll ar[mx];
ll gcd(ll a, ll b)
{
return __gcd(a, b);
}
ll lcm(ll a, ll b) { return a * (b / gcd(a, b)); }
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
int main()
{
ios_base ::sync_with_stdio(false);
cin.tie(NULL);
ll n;
cin>>n;
for(int i = 0;i<n;i++){
cin>>ar[i];
}
/* ll n;
cin >> n;
vector<int> v(n);
for(auto &x : v)
cin >> x;
*/
return 0;
}