結果

問題 No.804 野菜が苦手
ユーザー Ytz_IchiYtz_Ichi
提出日時 2019-06-28 10:17:52
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 10,700 KB
実行使用メモリ 8,036 KB
最終ジャッジ日時 2023-09-14 21:12:18
合計ジャッジ時間 2,008 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 17 ms
7,888 KB
testcase_02 AC 15 ms
8,012 KB
testcase_03 AC 16 ms
7,904 KB
testcase_04 AC 15 ms
7,940 KB
testcase_05 AC 16 ms
7,952 KB
testcase_06 AC 15 ms
7,904 KB
testcase_07 WA -
testcase_08 AC 16 ms
7,892 KB
testcase_09 AC 15 ms
7,940 KB
testcase_10 AC 15 ms
7,908 KB
testcase_11 AC 15 ms
7,952 KB
testcase_12 AC 16 ms
7,896 KB
testcase_13 AC 16 ms
7,888 KB
testcase_14 AC 16 ms
7,944 KB
testcase_15 AC 16 ms
8,032 KB
testcase_16 AC 16 ms
7,904 KB
testcase_17 AC 15 ms
7,856 KB
testcase_18 AC 15 ms
7,812 KB
testcase_19 AC 16 ms
7,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

a, b, c, d = list(map(int, input().split()))
sa = math.floor(d / (1 + c))
sb = math.floor(b / c)
print(min([sa, sb]))
0