結果
| 問題 | No.804 野菜が苦手 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-07 13:25:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| + 181µs | |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 285 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 15,888 KB |
| 最終ジャッジ日時 | 2026-07-19 02:50:02 |
| 合計ジャッジ時間 | 3,805 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 |
ソースコード
a, b, c, d = map(int, input().split(' '))
x = 1
while True:
if x > a:
break
if (x * c) > b:
break
if x * (c + 1) > d:
break
x += 1
print(x - 1)