码迷,mamicode.com
首页 > Windows程序 > 详细

ACwing89 a^b 快速幂取模

时间:2019-09-05 23:03:57      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:while   快速   tps   include   ble   highlight   ret   can   name   

网址:https://www.acwing.com/problem/content/91/

题解:

快速幂取模板子题。

AC代码:

#include <bits/stdc++.h>
using namespace std;
long long inv(long long a, long long b, long long p)
{
	long long res = 1;
	while (b)
	{
		if (b & 1)
			res = (res * a) % p;
		a = (a * a) % p;
		b >>= 1;
	}
	return res % p;
}
int main()
{
	long long a, b, p;
	scanf("%lld%lld%lld", &a, &b, &p);
	printf("%lld\n", inv(a, b, p));
	return 0;
}

  

ACwing89 a^b 快速幂取模

标签:while   快速   tps   include   ble   highlight   ret   can   name   

原文地址:https://www.cnblogs.com/Aya-Uchida/p/11470201.html

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