acwing 89. a^b

2021-05-16 08:29

阅读:676

标签:view   thml   review   ret   rgb   data-   turn   code   cout   

题目

求 aa 的 bb 次方对 pp 取模的值。

输入格式

三个整数 a,b,pa,b,p ,在同一行用空格隔开。

输出格式

输出一个整数,表示a^b mod p的值。

数据范围

0≤a,b≤1090≤a,b≤109
1≤p≤1091≤p≤109

 

输入样例:

3 2 7 

 

输出样例:

2

 

#include
using namespace std;
typedef long long  LL;
int main()
{
    int a,b,p;
    scanf("%d%d%d",&a,&b,&p);
    int res=1%p;
    while(b)
    {
        if(b&1)
        res=(LL)res*a%p;
        a=(LL)a*a%p;
        b>>=1;
    }
    cout

  

  

acwing 89. a^b

标签:view   thml   review   ret   rgb   data-   turn   code   cout   

原文地址:https://www.cnblogs.com/ITduange/p/14527717.html


评论


亲,登录后才可以留言!