博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
51 nod 1046 A^B Mod C
阅读量:6998 次
发布时间:2019-06-27

本文共 492 字,大约阅读时间需要 1 分钟。

基准时间限制: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
#include
#define ll long longusing 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<

 

 

转载于:https://www.cnblogs.com/TheRoadToTheGold/p/6625077.html

你可能感兴趣的文章