結果

問題 No.1736 Princess vs. Dragoness
ユーザー ああいいああいい
提出日時 2021-12-03 20:31:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-06 04:01:47
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B,X,Y = list(map(int,input().split()))
H = list(map(int,input().split()))

H.sort(reverse = True)
count = 0
i = 0
while count < A and i < N:
    q = H[i] // X
    if q == 0:
        count += 1
        H[i] = 0
        i += 1
    else:
        q1 = min(A - count,q)
        count += q1
        H[i] -= X * q1
        i += 1
if count < A:
    H.sort(reverse = True)
    for i in range(min(A-count,N)):
        H[i] = 0
if sum(H) <= Y * B:
    print('Yes')
else:
    print('No')
0