Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5346 | 陆若涵 | 13求n的阶乘 | C++ | Wrong Answer | 0 MS | 272 KB | 126 | 2024-11-09 20:45:22 |
#include<iostream> using namespace std; int main(){ int m,n=1; cin>>m; for(int i=1;i<=m;i++) n*=i; cout<<n; }
------Input------
17
------Answer-----
355687428096000
------Your output-----
-288522240