結果
問題 |
No.1736 Princess vs. Dragoness
|
ユーザー |
|
提出日時 | 2021-11-12 23:57:37 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 283 bytes |
コンパイル時間 | 243 ms |
コンパイル使用メモリ | 82,884 KB |
実行使用メモリ | 67,160 KB |
最終ジャッジ日時 | 2025-07-04 14:05:11 |
合計ジャッジ時間 | 3,303 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
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")