結果

問題 No.804 野菜が苦手
ユーザー xxxasdfghjk
提出日時 2019-04-11 15:56:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-18 15:02:07
合計ジャッジ時間 1,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C,D = list(map(int,input().split()))
res = 0
for i in range(A+1):
    if i*C <= B and i+B <= D:
        res = max(res,i)
print(res)
0