You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
305 B
19 lines
305 B
2 years ago
|
#include <bits/stdc++.h>
|
||
|
using namespace std;
|
||
|
|
||
|
typedef long long LL;
|
||
|
LL a, b, p, res;
|
||
|
|
||
|
int main() {
|
||
|
cin >> a >> b >> p;
|
||
|
|
||
|
// 龟速乘
|
||
|
while (b) {
|
||
|
if (b & 1) res = (res + a) % p;
|
||
|
a = (a + a) % p;
|
||
|
b >>= 1;
|
||
|
}
|
||
|
|
||
|
cout << res << endl;
|
||
|
return 0;
|
||
|
}
|