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

HDU-1061-Rightmost Digit

时间:2018-09-20 17:27:30      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:clu   space   names   mos   bsp   turn   mes   std   cin   

#include"bits/stdc++.h"
using namespace std;
int quick_pow(int n, int k) {
    int ans=1;
    while(k) {
        if(k & 1)
        ans = ans * n % 10;
        n = n * n % 10;
        k >>= 1;
    }
    return ans;
}
int main() {
    int T, n;
    cin >> T;
    while(T--) {
        cin >> n;
        cout << quick_pow(n%10,n) << endl;
    }
    return 0;
}

 

HDU-1061-Rightmost Digit

标签:clu   space   names   mos   bsp   turn   mes   std   cin   

原文地址:https://www.cnblogs.com/Angel-Demon/p/9681690.html

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