| Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
| 142196 |
丁俊杰 |
13求n的阶乘 |
Python3 |
Wrong Answer |
31 MS |
3752 KB |
65 |
2026-01-01 16:29:24 |
Tests(0/10):
Code:
n=int(input())
res=1
for i in range(n):
res*=i
print(res)
Run Info:
------Input------
11
------Answer-----
39916800
------Your output-----
0