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

乘法逆元(快速幂)

时间:2018-07-08 18:00:29      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ace   using   ring   a*   bsp   乘法   pre   mes   can   

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

 

乘法逆元(快速幂)

标签:ace   using   ring   a*   bsp   乘法   pre   mes   can   

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

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