結果

問題 No.1736 Princess vs. Dragoness
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-12 21:42:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-05-04 07:53:52
合計ジャッジ時間 3,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,968 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 46 ms
52,352 KB
testcase_03 AC 55 ms
60,544 KB
testcase_04 AC 69 ms
65,920 KB
testcase_05 AC 55 ms
60,416 KB
testcase_06 AC 73 ms
67,968 KB
testcase_07 AC 94 ms
76,288 KB
testcase_08 AC 85 ms
72,448 KB
testcase_09 AC 86 ms
73,856 KB
testcase_10 AC 53 ms
59,520 KB
testcase_11 AC 100 ms
76,288 KB
testcase_12 AC 68 ms
65,664 KB
testcase_13 AC 74 ms
68,480 KB
testcase_14 AC 74 ms
68,224 KB
testcase_15 AC 63 ms
63,744 KB
testcase_16 AC 72 ms
66,944 KB
testcase_17 AC 74 ms
68,480 KB
testcase_18 AC 67 ms
65,408 KB
testcase_19 AC 65 ms
64,896 KB
testcase_20 AC 54 ms
59,520 KB
testcase_21 AC 81 ms
70,272 KB
testcase_22 AC 84 ms
72,576 KB
testcase_23 AC 75 ms
68,096 KB
testcase_24 AC 45 ms
53,120 KB
testcase_25 AC 78 ms
69,632 KB
testcase_26 AC 82 ms
73,344 KB
testcase_27 AC 80 ms
70,784 KB
testcase_28 AC 66 ms
64,768 KB
testcase_29 AC 61 ms
63,488 KB
testcase_30 AC 70 ms
66,688 KB
testcase_31 AC 80 ms
70,656 KB
testcase_32 AC 79 ms
71,680 KB
testcase_33 AC 42 ms
52,224 KB
testcase_34 AC 43 ms
52,480 KB
testcase_35 AC 42 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,x,y = map(int,input().split())
h = list(map(lambda x:-int(x),input().split()))
b_sum = b*y
h.sort(reverse=True)
import heapq
q = h[::]
heapq.heapify(q)
# print(q)
for i in range(a):
    aa = heapq.heappop(q)
    aa = min(aa+x,0)
    heapq.heappush(q,aa)
h = list(map(lambda x:-int(x),q))
# print(h)
for i in range(n):
    d = min(b_sum,h[i])
    h[i] -= d
    b_sum -= d
if sum(h) == 0:
    print("Yes")
else:
    print("No")
0