0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-19 22:13:01 +08:00 committed by Baoshuo Ren
parent 4bc93bb684
commit 5c4e71b2c0
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

25
AcWing/875/875.cpp Normal file
View File

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