标签:快速 clu style ase stream code name 快速幂 out
输入b,p,k的值,求b^p mod k的值。其中b,p,k*k为长整型数。
输入格式:
三个整数b,p,k.
输出格式:
输出“b^p mod k=s”
s为运算结果
2 10 9
2^10 mod 9=7
快速幂,随手取膜
#include<cstdio> #include<iostream> using namespace std; int b,p,k; #define LL long long LL q_pow(LL x,LL y) { LL ans=1,base=x; while(y!=0) { if(y&1)ans=(ans*base)%k; base=(base*base)%k; y>>=1; } return ans; } int main() { cin>>b>>p>>k; cout<<b<<"^"<<p<<" mod "<<k<<"="<<q_pow(b,p)%k; return 0; }
标签:快速 clu style ase stream code name 快速幂 out
原文地址:http://www.cnblogs.com/sssy/p/7112999.html