結果

問題 No.1736 Princess vs. Dragoness
ユーザー first_vilfirst_vil
提出日時 2021-11-12 21:34:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 63,424 KB
最終ジャッジ日時 2024-05-04 05:10:50
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 42 ms
60,800 KB
testcase_05 AC 38 ms
58,112 KB
testcase_06 AC 38 ms
59,648 KB
testcase_07 AC 50 ms
62,592 KB
testcase_08 AC 42 ms
61,696 KB
testcase_09 AC 47 ms
62,464 KB
testcase_10 AC 38 ms
58,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
59,648 KB
testcase_14 WA -
testcase_15 AC 36 ms
58,112 KB
testcase_16 AC 38 ms
57,728 KB
testcase_17 WA -
testcase_18 AC 39 ms
58,368 KB
testcase_19 AC 46 ms
58,880 KB
testcase_20 AC 36 ms
52,468 KB
testcase_21 WA -
testcase_22 AC 46 ms
62,080 KB
testcase_23 AC 38 ms
58,240 KB
testcase_24 AC 33 ms
52,096 KB
testcase_25 AC 44 ms
60,928 KB
testcase_26 AC 39 ms
59,264 KB
testcase_27 AC 40 ms
59,904 KB
testcase_28 AC 37 ms
58,624 KB
testcase_29 AC 37 ms
58,112 KB
testcase_30 AC 39 ms
58,752 KB
testcase_31 AC 44 ms
59,520 KB
testcase_32 AC 38 ms
59,776 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 35 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y = map(int,input().split())
h = list(map(int,input().split()))
h.sort(reverse=True)
i = 0
while a and i < n:
    if h[i] >= x:
        h[i] -= x
        a -= 1
    else:
        i += 1
for j in range(a):
    i = h.index(max(h))
    h[i] -= x
if sum(h) <= y*b:
    print("Yes")
else:
    print("No")
0