結果
| 問題 | No.804 野菜が苦手 |
| コンテスト | |
| ユーザー |
anagohirame
|
| 提出日時 | 2019-03-22 21:45:34 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 110 bytes |
| 記録 | |
| コンパイル時間 | 297 ms |
| コンパイル使用メモリ | 21,672 KB |
| 実行使用メモリ | 15,996 KB |
| 最終ジャッジ日時 | 2026-08-30 18:52:09 |
| 合計ジャッジ時間 | 3,638 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 19 |
ソースコード
a, b, c, d = map(int, input().split())
i = 0
while i <= a and i*c <= b and (i + i*c) <= d:
i += 1
print(i)
anagohirame