码迷,mamicode.com
首页 > Web开发 > 详细

HDU1061-Rightmost Digit(快速幂取模)

时间:2014-08-29 22:41:18      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   io   ar   代码   sp   amp   

题目链接


题意:求n^n的个位数的值。

思路:快速幂求值

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>

using namespace std;

typedef __int64 ll;
//typedef long long ll;

const int MOD = 1000000000;

ll n;

ll pow_mod(ll k) {
    if (k == 1)
        return n % MOD;
    ll a = pow_mod(k / 2);
    ll ans = a * a % MOD; 
    if (k % 2 == 1)
        ans = ans * n % MOD;
    return ans;
}

int main() {
    int cas;
    scanf("%d", &cas);
    while (cas--) {               
        scanf("%I64d", &n);
        ll ans = pow_mod(n);
        while (ans > 10) {
            ans %= 10; 
        }
        printf("%I64d\n", ans);
    }
    return 0;
}


HDU1061-Rightmost Digit(快速幂取模)

标签:style   http   color   os   io   ar   代码   sp   amp   

原文地址:http://blog.csdn.net/u011345461/article/details/38931893

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