51Nod 1004 n^n末尾数字 | 快速幂

Posted kimsimple

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51Nod 1004 n^n末尾数字 | 快速幂相关的知识,希望对你有一定的参考价值。

 

#include "bits/stdc++.h"
using namespace std;
#define LL long long
#define INF 0x3f3f3f3f3f
#define PI acos(-1)
#define N 510
#define MOD 10
LL quickPow(LL a,LL b)
{
    LL ans=1;
    while(b>0){
        if(b&1){
            ans=ans*a%MOD;
        }
        b>>=1;
        a=a*a%MOD;
    }
    return ans;
}
int main()
{
    int n,k;
    while(~scanf("%d",&n)){
        printf("%lld\n",quickPow(n,n));
    }
    return 0;
}

 

以上是关于51Nod 1004 n^n末尾数字 | 快速幂的主要内容,如果未能解决你的问题,请参考以下文章

51nod 1004 n^n的末位数字

51nod 1004 n^n的末位数字快速幂

51Nod 1004 n^n的末位数字(日常复习快速幂,莫名的有毒,卡mod值)

[51nod]1004 n^n的末位数字

51Nod 1004 n^n的末位数字

51nod 1004 n^n的末位数字