N!
Problem Description
Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!
Input
One N in one line, process to the end of file.
Output
For each N, output N! in one line.
Sample Input
1
2
3
Sample Output
1
2
6
Author
JGShining(极光炫影)
题目类型:高精度阶乘
算法分析:直接使用数组模拟即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
#include <set> #include <bitset> #include <list> #include <map> #include <stack> #include <queue> #include <deque> #include <string> #include <vector> #include <ios> #include <iostream> #include <fstream> #include <sstream> #include <iomanip> #include <algorithm> #include <utility> #include <complex> #include <numeric> #include <functional> #include <cmath> #include <ctime> #include <climits> #include <cstdarg> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cassert> #define lson rt << 1, l, m #define rson rt << 1 | 1, m + 1, r using namespace std; const int INF = 0x7FFFFFFF; const double EPS = 1e-10; const double PI = 2 * acos (0.0); const int MOD = 7; const int maxn = 100000 + 66; int ans[maxn], len; int main() { // ifstream cin ("aaa.txt"); int n; while (cin >> n) { memset (ans, 0, sizeof (ans)); len = 1; ans[0] = 1; for (int i = 1; i <= n; i++) { int k = 0; for (int j = 0; j < len; j++) { int temp = ans[j] * i + k; ans[j] = temp % 10; k = temp / 10; } while (k) { ans[len++] = k % 10; k /= 10; } } for (int i = len - 1; i >= 0; i--) cout << ans[i]; cout << endl; } return 0; } |
- « 上一篇:hdu1028
- hdu1075:下一篇 »