题目链接:​​点我​​​
给出3个正整数A B C,求A^B Mod C。
例如,3 5 8,3^5 Mod 8 = 3。
Input
3个正整数A B C,中间用空格分隔。(1 <= A,B,C <= 10^9)
Output
输出计算结果
Input示例
3 5 8
Output示例
3

裸题,快速幂

#include<stdio.h>
typedef long long ll;
ll powmod(ll a,ll b,ll mod){
ll ans=1;
a%=mod;
while(b){
if(b&1){
ans=(ans*a)%mod;
}
a=(a*a)%mod;
b>>=1;
}
return ans;
}
int main(){
ll a,b,c;
scanf("%lld%lld%lld",&a,&b,&c);
printf("%lld\n",powmod(a,b,c));
}