結果

問題 No.1736 Princess vs. Dragoness
ユーザー ibukiti
提出日時 2021-11-12 21:34:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 65,728 KB
最終ジャッジ日時 2025-07-04 14:02:55
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y=map(int,input().split())
h=list(map(int,input().split()))
h.sort(reverse=True)
for i in range(a):
    if max(h)-x<0:
        h[h.index(max(h))]=0
    else :
        h[h.index(max(h))]-=x

if sum(h)>y*b:
    print("No")
else:
    print("Yes")
0