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

快速幂模板

时间:2018-08-22 15:02:11      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:快速   const   its   lse   int   else   ==   code   --   

 

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int mod=1e4+7;
int quick(int x,int n)
{
    if(n==0) return 1;
    int ans=1;
    int t=x;
    while(n)
    {
        if(n%2==1) ans=(ans*t)%mod,n--;
        else     t=(t*t)%mod,n=n/2;
    }
    return ans;

}
int32_t main()
{
    int a,b,k,n,m;
    cin>>a>>b>>k>>n>>m;
    int ans1=quick(a,n);
    int ans2=quick(b,m);
  
}

 

快速幂模板

标签:快速   const   its   lse   int   else   ==   code   --   

原文地址:https://www.cnblogs.com/Andromeda-Galaxy/p/9517311.html

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