Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143442 丁俊杰 09闰年第n个月有多少天 Python3 Wrong Answer 32 MS 3756 KB 117 2026-01-15 13:26:46

Tests(1/10):


Code:

a=[31,29,31,30,31,30,31,31,30,31,30,31] n=int(input()) if 1<=n<=12: print(a[n-1]) else: print("Invalid")


Run Info:

------Input------
0
------Answer-----
Invalid.
------Your output-----
Invalid