码迷,mamicode.com
首页 > 其他好文 > 详细

51nod 1004 n^n的末位数字

时间:2017-08-15 21:50:37      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:log   scanf   color   include   name   pre   using   main   can   

求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的末位数字

标签:log   scanf   color   include   name   pre   using   main   can   

原文地址:http://www.cnblogs.com/Draymonder/p/7367883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!