首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
hdu1420专题
hdu1420(求余数)
#include<iostream>using namespace std;int main(){__int64 a,b,c,mod,n;cin>>n;while(n--){cin>>a>>b>>c;if(c==1)mod=0;elseif(b==0&&c>1)mod=1;else{mod=1;while(b--){mod*=a;mod%=c;}}cout<<mod<<endl;}}
阅读更多...