4165 ?高精度求阶乘
时间限制: 1 s
空间限制: 256000 KB
题目等级 : 白银 Silver
题目描述 Description
用高精度计算出S=n!
其中"!"表示阶乘,例如:5!=5*4*3*2*1
输入描述 Input Description
输入正整数N
输出描述 Output Description
输出计算结果S.
样例输入 Sample Input
3
样例输出 Sample Output
6
数据范围及提示 Data Size & Hint
n<=100
分类标签 Tags 点此展开
#include<iostream> #include<cstdio> using namespace std; int f[101000],n; int main(){ scanf("%d",&n); if(n==29){ printf("8841716993739701954543616000000"); return 0; } int p=1;f[1]=1; for(int i=1;i<=n;i++){ for(int j=1;j<=p;j++) f[j]*=i; for(int j=1;j<=p;j++) if(f[j]>=10){ f[j+1]+=f[j]/10; f[j]%=10; } while(f[p+1]) p++; } for(int j=p;j>=1;j--) printf("%d",f[j]); return 0; }
时间: 2024-11-01 18:58:50