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

题解51 nod 1046

时间:2018-08-22 16:45:38      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:class   pac   code   def   int   pre   a*   main   ace   

最近无聊,刷刷水提来排解一下

水题一发,快速幂的题

闲得无聊翻了翻别人写的博客,也是醉了,写的那么精致(zhuangbi)真的是那些这道题都能来翻题解的人看得懂的吗。。。

不废话了

快速幂我就不证明了

#include<bits/stdc++.h>
using namespace std;

typedef long long LL;

LL mypow(LL a,LL b,LL c){
    
    LL sum=1;
    while(b){
        
        if(b%2==1) sum=sum*a%c;
        a=a*a%c;
        b/=2; 
    }
    return sum;
}
int main(){
    
    int a,b,c;
    scanf("%d%d%d",&a,&b,&c);
    printf("%lld\n",mypow(a,b,c)); 
}

 

题解51 nod 1046

标签:class   pac   code   def   int   pre   a*   main   ace   

原文地址:https://www.cnblogs.com/pilium/p/9517791.html

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