結果
問題 |
No.1736 Princess vs. Dragoness
|
ユーザー |
|
提出日時 | 2021-11-12 23:57:37 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 95 ms / 2,000 ms |
コード長 | 283 bytes |
コンパイル時間 | 390 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 64,896 KB |
最終ジャッジ日時 | 2024-11-25 23:01:45 |
合計ジャッジ時間 | 3,814 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 33 |
ソースコード
n, a, b, x, y = map(int, input().split()) h = list(map(int, input().split())) for i in range(a): h[h.index(max(h))] -= x for i in range(b): now = y for j in range(n): if h[j] < 0: continue tmp = min(h[j], now) now -= tmp h[j] -= tmp print("Yes" if max(h) <= 0 else "No")