欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

996A

程序员文章站 2022-04-17 21:29:30
...

https://ac.nowcoder.com/acm/contest/996/A
快速幂模板
注意模运算规律
996A

#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll a, b, p;
ll quick_pow(ll a,ll b,ll mod)
{
    ll ans = 1,base = a;
    while(b)
    {
        if(b&1)
            ans = ans * base % mod;
        base = base * base % mod;
        b >>= 1;
    }
    return ans % mod;
}

int main()
{
    while(~scanf("%lld%lld%lld",&a,&b,&p))
    {
        printf("%lld\n", quick_pow(a, b, p));
    }
    return 0;
}
相关标签: 蓝书

推荐阅读