题解 | #求root(N, k)#

求root(N, k)

https://www.nowcoder.com/practice/9324a1458c564c4b9c4bfc3867a2aa66

#include <bits/stdc++.h>
using namespace std;
int QuickPower(int x, int y, int n) { //取x^y的n进制的个位数
    int ans = 1;
    while (y) {
        if (y % 2) {
            ans = x * ans ;
            ans = ans % n ;
        }
        y = y / 2;
        x = x % n;
        x = x * x;
    }
    return ans;
}
int main() {
    int x, y, k;
    while(cin >> x >> y >> k){
        if(QuickPower(x,y,k-1)) cout << QuickPower(x,y,k-1) << endl;
        else cout << k-1 << endl;
    }

    return 0;
}

全部评论

相关推荐

无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务