Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
173653 C班徐柏涵 高精度阶乘 C++ 无测评数据 0 0 MS 0 KB 337 2024-08-20 22:57:01

Tests(0/0):


#include <bits/stdc++.h> using namespace std; int n,a[100000],c[100000],len; void times(int n){ int x=0; for(int i=0;i<=len;i++){ int p=a[i]*n+x; a[i]=p%10; x=p/10; } while(x){ a[++len]=x%10; x/=10; } } int main(){ cin>>n; a[0]=1; for(int i=2;i<=n;i++)times(i); for(int i=len;i>=0;i--)cout<<a[i]; }