Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133134 叶航帅 09闰年第n个月有多少天 Python3 Wrong Answer 48 MS 3768 KB 142 2025-10-14 21:28:32

Tests(1/10):


Code:

abab = [0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] n = int(input()) if 1 <= n <= 12: print(abab[n]) else: print("sb")


Run Info:

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