0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:25:24 +00:00
Baoshuo Ren 2021-09-22 21:31:40 +08:00 committed by Baoshuo Ren
parent 764424125c
commit a1f6e8959c
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

21
AcWing/90/90.cpp Normal file
View File

@ -0,0 +1,21 @@
#include <bits/stdc++.h>
using namespace std;
long long bintimes(long long a, long long b, long long m) {
a %= m;
long long res = 0;
while (b > 0) {
if (b & 1) res = (res + a) % m;
a = (a + a) % m;
b >>= 1;
}
return res;
}
int main() {
long long a, b, p;
cin >> a >> b >> p;
cout << bintimes(a, b, p) << endl;
return 0;
}