标签:return mod soft ges 一个 找规律 img while 数字
一个数N(1 <= N <= 10^9)
输出N^N的末位数字
13
3
快速幂
代码:
#include <iostream> using namespace std; #define LL long long #define Mod 10 LL Pow(LL a, LL n) { int ans = 1; while (n) { if (n & 1) ans = (ans*a)%Mod; a = (a*a)%Mod; n >>= 1; } return ans%10; } int main() { //freopen("1.txt", "r", stdin); int a; cin >> a; cout << Pow(a, a); return 0; }
解二:
其实可以通过找规律来确定,n的n次阶乘有如下规律:
4次一循环 所以只用计算1-4次方即可且只计算数字末位
代码:
#include <iostream> #include <math.h> #include <stdio.h> using namespace std; int main() { //freopen("1.txt", "r", stdin); int n; cin >> n; int a, b; a = n % 10; b = n % 4; if (b == 0) b = 4; cout << (int)pow(a, b)%10; return 0; }
标签:return mod soft ges 一个 找规律 img while 数字
原文地址:http://www.cnblogs.com/whileskies/p/7073408.html