本文主要是介绍875. 快速幂(模板),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
题目链接
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstring>
using namespace std;
int main(){int n, a, b, p;cin>>n;while(n--){cin>>a>>b>>p;int res = 1;while(b != 0){if(b&1) res = res*1ll*a % p;a = a*1ll*a % p;b >>= 1;}cout<<res%p<<endl;}return 0;
}
这篇关于875. 快速幂(模板)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!