51nod 1004 n^n的末位数字

Posted Draymonder

tags:

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

求n的n次方的末尾数字

大概都知道暴力 模拟一下  但是 N 是10^9级别的 会T

所以用   快速幂  要是求n的阶乘就不行了呢

 

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod = 10;
int  _pow(ll x,ll n)
{
    int res = 1;
    while (n > 0)
    {
        if(n & 1) res = res * x %mod;
        x = x * x %mod;
        n >>=1;
    }
    return res;
}


int main ()
{
    int n;
    scanf("%d",&n);
    printf("%d\n",_pow(n,n));
}

 

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

51nod 1004 n^n的末位数字

51Nod - 1004 n^n的末位数字

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

51nod1004 n^n的末位数字

51nod 1004 n^n的末位数字

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