码迷,mamicode.com
首页 > 其他好文 > 详细

快速幂

时间:2018-07-08 18:02:52      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:return   bsp   nbsp   amp   mat   mod   scan   printf   快速   

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
using namespace std;
long long a,b,MOD,ans=1;
int main()
{
    scanf("%lld%lld%lld",&a,&b,&MOD);
    while(b)
    {
        if(b&1)
            ans=ans*a%MOD;//如果b为单数,乘到ans里面去,然后取模 
        a=a*a%MOD;
        b=b>>1;
    }
    printf("%lld",ans);
    return 0;
}

 

快速幂

标签:return   bsp   nbsp   amp   mat   mod   scan   printf   快速   

原文地址:https://www.cnblogs.com/water-radish/p/9280611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!