基准时间限制:1 秒 空间限制:131072 KB 分值: 0 难度:基础题
收藏
关注
给出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<cstdio> #include<iostream> #define ll long long using namespace std; ll pow(ll a,ll b,ll c) { ll ans=1; for(;b;b>>=1,a=a*a%c) if(b&1) ans=ans*a%c; return ans; } int main() { ll a,b,c; cin>>a>>b>>c; cout<<pow(a,b,c); }