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.
|
#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;
|
|
} |