错误总结
- if是if ,但是那个地方没有else !!!
- 没思路
- 先把res初始化好就来安排你这个b
- 如果是奇数一行安排,就处理res就好了,如果是偶数就处理两个,一个是a 一个是b
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long LL;
LL qmi(int a, int b, int p)
{
LL res = 1 % p;
while (b)
{
if (b & 1) res = res * a % p;
a = a * (LL)a % p;
b >>= 1;
}
return res;
}
int main()
{
int n;
scanf("%d", &n);
while (n -- )
{
int a, b, p;
scanf("%d%d%d", &a, &b, &p);
printf("%lld\n", qmi(a, b, p));
}
return 0;
}