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

快速幂取模

时间:2016-11-02 07:47:17      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:namespace   lld   algorithm   int   ring   print   stream   cstring   long   

#include<iostream>
#include<cstring>
#include<cstdio>
#include<string>
#include<algorithm>
#define LL long long 
using namespace std;

LL PowerMod(LL a, LL b, LL c)
{
    LL ans = 1;
    a = a%c;
    while(b)
    {
        if(b&1)    ans = ans*a%c;
        b >>= 1;
        a = a*a%c;
    }
    return ans;
}

int main()
{
    LL a,b,c;
    while(~scanf("%lld%lld%lld",&a,&b,&c))
    {
        printf("%lld\n",PowerMod(a,b,c));
    }
    return 0;
}

//XDOJ1026

 

快速幂取模

标签:namespace   lld   algorithm   int   ring   print   stream   cstring   long   

原文地址:http://www.cnblogs.com/zhurb/p/6021486.html

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