Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
119511 吴梓玄 13求n的阶乘 Python3 Accepted 45 MS 3764 KB 92 2025-05-17 17:28:11

Tests(10/10):


Code:

a=int(input()) s=1 if a==0: print(1) else: for i in range(1,a+1): s=s*i print(s)