結果

問題 No.2842 Birthday
ユーザー hato336hato336
提出日時 2024-08-23 23:02:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 83 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 53,292 KB
最終ジャッジ日時 2024-08-23 23:02:58
合計ジャッジ時間 1,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 38 ms
52,472 KB
testcase_03 AC 39 ms
52,028 KB
testcase_04 AC 41 ms
51,884 KB
testcase_05 AC 39 ms
52,688 KB
testcase_06 AC 39 ms
53,244 KB
testcase_07 AC 40 ms
52,492 KB
testcase_08 AC 40 ms
53,088 KB
testcase_09 AC 38 ms
51,872 KB
testcase_10 AC 38 ms
51,908 KB
testcase_11 AC 39 ms
52,004 KB
testcase_12 AC 38 ms
52,444 KB
testcase_13 AC 38 ms
53,032 KB
testcase_14 AC 39 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m,d = map(int,input().split())
print(23 if m * 10**9 + d < 8 * 10**9 + 21 else 24) 
0