結果

問題 No.2842 Birthday
ユーザー i_takui_taku
提出日時 2024-09-30 13:13:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 53,968 KB
最終ジャッジ日時 2024-09-30 13:13:46
合計ジャッジ時間 1,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,820 KB
testcase_01 AC 38 ms
51,952 KB
testcase_02 AC 38 ms
53,420 KB
testcase_03 AC 35 ms
53,324 KB
testcase_04 AC 33 ms
52,252 KB
testcase_05 AC 33 ms
52,132 KB
testcase_06 AC 33 ms
52,612 KB
testcase_07 AC 33 ms
53,224 KB
testcase_08 AC 33 ms
53,968 KB
testcase_09 AC 34 ms
52,960 KB
testcase_10 AC 33 ms
52,464 KB
testcase_11 AC 36 ms
52,196 KB
testcase_12 AC 34 ms
52,580 KB
testcase_13 AC 33 ms
52,404 KB
testcase_14 AC 35 ms
52,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M, D = map(int, input().split())
ans = 23
if M == 8 and D >= 22 or M > 8:
    ans += 1
print(ans)
0