結果

問題 No.804 野菜が苦手
ユーザー 杉浦海翔
提出日時 2024-05-09 11:04:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-15 23:24:06
合計ジャッジ時間 1,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other AC * 3 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
a,b,c,d = map(int,input().split())
cnt=0

bb=b/c

dd=d/(c+1)

ans=min(a,min(bb,dd))
        
print(ans)
0