博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[HDOJ1061]Rightmost Digit
阅读量:5068 次
发布时间:2019-06-12

本文共 1423 字,大约阅读时间需要 4 分钟。

Rightmost Digit

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 38642    Accepted Submission(s): 14558

Problem Description
Given a positive integer N, you should output the most right digit of N^N.
 

 

Input
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case contains a single positive integer N(1<=N<=1,000,000,000).
 

 

Output
For each test case, you should output the rightmost digit of N^N.
 

 

Sample Input
2 3 4
 

 

Sample Output
7 6
Hint
In the first case, 3 * 3 * 3 = 27, so the rightmost digit is 7. In the second case, 4 * 4 * 4 * 4 = 256, so the rightmost digit is 6.
 
 
快速幂的基本应用,特别要注意数据范围,应该使用__int64否则会超时,代码如下:
 
1 #include 
2 #include
3 #include
4 #include
5 using namespace std; 6 7 int pow1(int x, int n) 8 { 9 __int64 ans = 1, t = n;10 while(n)11 {12 if(n & 1)13 {14 ans = (ans * t) % 10;15 }16 t = t * t % 10;17 n >>= 1;18 }19 return ans;20 }21 int main()22 {23 __int64 n, m;24 scanf("%d", &n);25 for(int i = 0; i < n; i++)26 {27 scanf("%d", &m);28 printf("%d\n", pow1(m, m) % 10);29 }30 }
View Code

 

转载于:https://www.cnblogs.com/kirai/p/4575739.html

你可能感兴趣的文章
【转】json对象和java对象的相互转换
查看>>
react学习记录(持续。。。)
查看>>
HDU 5441 Travel (离线dsu)
查看>>
C++ 语法要点
查看>>
https://www.careercup.com/question?id=5742560911818752
查看>>
TDD
查看>>
Linux —— gcc编译文件
查看>>
面试题(C#算法编程题)
查看>>
Reinstall Microsoft Helper Viewer
查看>>
Python中的实例方法、类方法、静态方法和普通方法
查看>>
JDE客户端get时报错“ERROR:fetch from table F0101 failed”
查看>>
Javascript面试题大全
查看>>
js正则表达式利器
查看>>
C#根据xsd生成xml
查看>>
WebAPI集成SignalR
查看>>
使用SevenZipSharp压缩/解压7z格式
查看>>
AC解 - Longest Ordered Subsequence(最长递增子序列)
查看>>
Linux学习之CentOS(九)--Linux系统的网络环境配置
查看>>
mongo批量更新、导入导出脚本
查看>>
Ruby读excel写入mysql
查看>>