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

快速幂取模

时间:2018-08-10 13:11:08      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:cst   pre   mes   print   names   type   while   快速幂   string   

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
ll ksm(ll a, ll b, ll c)
{
    ll ans=1;
    a=a%c;
    while(b>0)
    {
        if(b%2==1)
            ans=(ans*a)%c;
        b=b/2;
        a=(a*a)%c;
    }
    return ans;
}
int main()
{
    ll a,b,c;
    scanf("%lld %lld %lld",&a,&b,&c);
    printf("%lld\n",ksm(a,b,c));
    return 0;
    
}

 

快速幂取模

标签:cst   pre   mes   print   names   type   while   快速幂   string   

原文地址:https://www.cnblogs.com/xiao-xue-di/p/9454321.html

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