forked from kingroryg/DSA
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Fmm.cpp
56 lines (50 loc) · 1.15 KB
/
Fmm.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
//saru95
#include <fstream>
#include <iostream>
#include <string>
#include <cstring>
#include <complex>
#include <math.h>
#include <utility>
#include <cmath>
#include <limits.h>
#include <set>
#include <vector>
#include <map>
#include <cctype>
#include <queue>
#include <stdio.h>
#include <cstdio>
#include <stack>
#include <algorithm>
#include <list>
#include <ctime>
#include <time.h>
#include <stdlib.h>
#include <numeric>
#include <memory.h>
#define all(a) (a).begin(),(a).end()
#define gcd __gcd
#define bitcount __builtin_popcount
using namespace std;
typedef std::vector<int> vi;
typedef std::vector<std::string> vs;
typedef std::pair<int, int> pii;
typedef std::set<int> si;
typedef std::map<std::string, int> msi;
long long int FastMultiplication(long long base, long long power, long long modulo) {
long long result = 1 ;
while(power>0) {
if(!power%2)
result = (result * base) % modulo ;
base = (base * base) % modulo ;
power = power / 2 ;
}
return result ;
}
int main(int argc, char const *argv[]) {
long long int base, power, modulo ;
cin >> base >> power >> modulo ;
cout << FastMultiplication(base, power, modulo) ;
return 0;
}