-
Notifications
You must be signed in to change notification settings - Fork 1
/
A_Again_Twenty_Five.cpp
68 lines (58 loc) · 1.35 KB
/
A_Again_Twenty_Five.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
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
63
64
65
66
67
68
#include <algorithm>
#include <iostream>
#include <cstring>
#include <climits>
#include <cstdio>
#include <cmath>
#include <unordered_map>
#include <vector>
#include <stack>
#include <deque>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef string str;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> ii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<ll> vll;
typedef map<int, int> mii;
typedef map<ll, ll> mll;
typedef set<int> si;
#define all(x) x.begin(), x.end()
#define sz(x) (int) x.size()
#define fr front()
#define bk back()
#define pb push_back
#define pf push_front
#define ins insert
#define fi first
#define se second
#define FOR(i, a, b, inc) for (int i = a; i < b; i += inc)
#define RFOR(i, a, b, inc) for (int i = b - 1; i >= a; i -= inc)
#define REP(i, a) FOR(i, 0, a, 1)
#define RREP(i, a) RFOR(i, 0, a, 1)
#define each(a, x) for (auto& a: x)
const int INF = 1e9;
const int MOD = 1e9 + 7;
int gcd(int a, int b);
int pow(int a, int b);
int main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cout << 25 << '\n';
}
int gcd(int a, int b) {
if (b == 0) return a;
return gcd(b, a%b);
}
int pow(int a, int b) {
if (b == 0) return 1;
if (b == 1) return a;
int x = pow(a, b/2);
if (b%2 == 0) return x*x;
return x*x*a;
}