3 条题解
-
0曾经的我 (zengzhiyuan) LV 9 @ 2023-1-1 21:13:04
AC代码
N = int(input()) result = 1 for i in range(1,N+1): result *= i print(result)
-
02021-12-21 22:39:21@
在
math
库中,有函数factorial(x)
求x的阶乘。 所以,代码只需要写成
import math i=int(input()) print(math.factorial(i))
-
02021-11-7 21:37:51@
n = int(input()) ans = 1 for x in range (1,n+1): ans *= x; print(ans)
- 1
信息
- ID
- 1384
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 6
- 标签
- 递交数
- 80
- 已通过
- 23
- 上传者