結果

問題 No.804 野菜が苦手
ユーザー mossari_aozora
提出日時 2019-10-01 19:17:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-03 05:45:38
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

line = input().split(" ")
vegi = int(line[0])
meat = int(line[1])
meatCons = int(line[2])
vegicons = 1
total = int(line[3])
cnt = 0

while True:
    vegi -= 1
    meat -= meatCons
    if (vegi < 0 or meat < 0):
        break
    total -= (vegicons + meatCons)
    if (total <= 0):
        break
    cnt += 1

print(cnt)
0