結果

問題 No.804 野菜が苦手
ユーザー deepjugglingdeepjuggling
提出日時 2023-06-08 07:42:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 53,408 KB
最終ジャッジ日時 2024-06-09 17:54:45
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,816 KB
testcase_01 AC 35 ms
51,940 KB
testcase_02 WA -
testcase_03 AC 32 ms
53,408 KB
testcase_04 AC 34 ms
52,976 KB
testcase_05 AC 33 ms
51,904 KB
testcase_06 AC 37 ms
52,200 KB
testcase_07 AC 34 ms
52,760 KB
testcase_08 WA -
testcase_09 AC 32 ms
51,944 KB
testcase_10 AC 32 ms
52,736 KB
testcase_11 AC 30 ms
52,696 KB
testcase_12 AC 32 ms
52,192 KB
testcase_13 AC 33 ms
52,280 KB
testcase_14 AC 32 ms
52,348 KB
testcase_15 AC 32 ms
52,620 KB
testcase_16 AC 32 ms
52,336 KB
testcase_17 AC 32 ms
51,868 KB
testcase_18 WA -
testcase_19 AC 31 ms
52,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d = map(int,input().split())
x = 0
for i in range(a):
    if b >= c:
        b -= c
    else:
        print(i)
        exit()
print(a)
0