結果

問題 No.2789 hako111223’s Master Thesis
ユーザー marusikakumarusikaku
提出日時 2024-08-08 06:22:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-08-08 06:22:38
合計ジャッジ時間 2,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,884 KB
testcase_01 AC 35 ms
51,904 KB
testcase_02 AC 33 ms
51,812 KB
testcase_03 WA -
testcase_04 AC 35 ms
52,132 KB
testcase_05 AC 34 ms
51,940 KB
testcase_06 WA -
testcase_07 AC 33 ms
52,916 KB
testcase_08 AC 33 ms
52,264 KB
testcase_09 AC 34 ms
52,328 KB
testcase_10 AC 34 ms
53,432 KB
testcase_11 AC 36 ms
52,204 KB
testcase_12 AC 35 ms
52,336 KB
testcase_13 AC 35 ms
52,876 KB
testcase_14 AC 36 ms
52,048 KB
testcase_15 AC 35 ms
52,204 KB
testcase_16 AC 33 ms
52,792 KB
testcase_17 AC 33 ms
52,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d = map(int, input().split())
t=32-a+b
if t>=c:
    print(1)
    exit()
if t>=d:
    print(2)
    exit()
print(3)
0