Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
151514 刘浩宇 13求n的阶乘 C++ Wrong Answer 1 MS 280 KB 137 2026-04-13 16:36:17

Tests(4/10):


Code:

#include<iostream> using namespace std; int main(){ int n; cin>>n; int a=1; for(int i=1;i<=n;i++){ a=a*i; } cout<<a; }


Run Info:

------Input------
16
------Answer-----
20922789888000
------Your output-----
2004189184