| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 74722 | sh25_shenpy | 高精度阶乘的和 | C++ | Wrong Answer | 0 MS | 244 KB | 281 | 2025-11-30 22:14:22 |
#include <bits/stdc++.h> using namespace std; int main( ) { int n; int i=1,j=1; long x=0,sum=1; cin>>n; while(i<=n){ while(j<=i){ sum*=j; j=j+1; } x+=sum; i=i+1; } cout<<x; return 0; }