結果

問題 No.2842 Birthday
ユーザー loop0919loop0919
提出日時 2024-08-23 23:00:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,648 KB
最終ジャッジ日時 2024-08-23 23:01:04
合計ジャッジ時間 1,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,700 KB
testcase_01 AC 34 ms
53,180 KB
testcase_02 AC 34 ms
53,632 KB
testcase_03 AC 34 ms
53,648 KB
testcase_04 AC 37 ms
51,984 KB
testcase_05 AC 34 ms
52,176 KB
testcase_06 AC 35 ms
52,884 KB
testcase_07 AC 35 ms
52,968 KB
testcase_08 AC 34 ms
51,752 KB
testcase_09 AC 33 ms
52,876 KB
testcase_10 AC 34 ms
52,892 KB
testcase_11 AC 35 ms
51,816 KB
testcase_12 AC 35 ms
52,596 KB
testcase_13 AC 35 ms
52,076 KB
testcase_14 AC 35 ms
53,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M, D = map(int, input().split())

if M <= 7:
    print(23)
elif M >= 9:
    print(24)
else:
    if D < 22:
        print(23)
    else:
        print(24)
0