Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141494 叶航帅 n的阶乘 Python3 Accepted 30 MS 3748 KB 123 2025-12-25 21:13:16

Tests(5/5):


Code:

def a(b): if b == 1: return 1 else: return b * a(b - 1) c = int(input()) d = a(c) print(d)