快速幂

int ppo(int x,int p){
    int t=x,res=1;
    while(p>0){
        if(p&1)res=(res*t)%mod;
        t=(t*t)%mod;
        p>>=1;
    }
    return res%mod;
}

 

posted @ 2020-10-13 16:10  yesuweiYYYY  阅读(55)  评论(0编辑  收藏  举报