| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123968 | 田子熙 | 13求n的阶乘 | C++ | Wrong Answer | 1 MS | 272 KB | 153 | 2025-07-10 15:26:13 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,a1=1; cin>>n; for(int a=1;a<=n;a++){ a1=a1*a; } cout<<a1; return 0; }
------Input------
16
------Answer-----
20922789888000
------Your output-----
2004189184