結果

問題 No.2789 hako111223’s Master Thesis
ユーザー Akijin_007Akijin_007
提出日時 2024-06-22 09:08:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2024-06-22 09:08:11
合計ジャッジ時間 1,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,480 KB
testcase_01 AC 32 ms
52,500 KB
testcase_02 AC 31 ms
52,968 KB
testcase_03 AC 32 ms
53,428 KB
testcase_04 AC 32 ms
53,056 KB
testcase_05 AC 33 ms
51,960 KB
testcase_06 AC 32 ms
52,068 KB
testcase_07 AC 31 ms
51,944 KB
testcase_08 AC 31 ms
52,392 KB
testcase_09 AC 32 ms
52,212 KB
testcase_10 AC 31 ms
52,144 KB
testcase_11 AC 30 ms
53,436 KB
testcase_12 AC 32 ms
52,492 KB
testcase_13 AC 34 ms
53,096 KB
testcase_14 AC 35 ms
52,828 KB
testcase_15 AC 33 ms
52,488 KB
testcase_16 AC 32 ms
53,076 KB
testcase_17 AC 34 ms
51,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C, D = map(int, input().split())

B += 31

ans = 0
if A + D > B:
    print(3)
elif A + C > B:
    print(2)
else:
    print(1)


0