結果

問題 No.1736 Princess vs. Dragoness
ユーザー hir355hir355
提出日時 2021-11-12 21:54:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-05-04 08:26:07
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 42 ms
60,288 KB
testcase_04 AC 51 ms
67,712 KB
testcase_05 AC 43 ms
61,184 KB
testcase_06 AC 53 ms
68,736 KB
testcase_07 AC 72 ms
76,416 KB
testcase_08 AC 59 ms
71,040 KB
testcase_09 AC 68 ms
76,160 KB
testcase_10 AC 42 ms
60,928 KB
testcase_11 AC 72 ms
76,416 KB
testcase_12 AC 49 ms
66,176 KB
testcase_13 AC 54 ms
68,992 KB
testcase_14 AC 57 ms
70,528 KB
testcase_15 AC 44 ms
63,232 KB
testcase_16 AC 51 ms
65,792 KB
testcase_17 AC 57 ms
70,144 KB
testcase_18 AC 49 ms
65,152 KB
testcase_19 AC 48 ms
65,664 KB
testcase_20 AC 41 ms
60,544 KB
testcase_21 AC 61 ms
71,296 KB
testcase_22 AC 69 ms
73,216 KB
testcase_23 AC 54 ms
68,856 KB
testcase_24 AC 35 ms
53,248 KB
testcase_25 AC 61 ms
70,272 KB
testcase_26 AC 60 ms
72,192 KB
testcase_27 AC 57 ms
70,656 KB
testcase_28 AC 48 ms
65,408 KB
testcase_29 AC 44 ms
62,848 KB
testcase_30 AC 51 ms
66,432 KB
testcase_31 AC 63 ms
73,472 KB
testcase_32 AC 68 ms
76,416 KB
testcase_33 AC 34 ms
52,736 KB
testcase_34 AC 32 ms
52,096 KB
testcase_35 AC 33 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappush, heappop
n, a, b, x, y = map(int, input().split())
h = list(map(lambda x:-int(x), input().split()))
heapify(h)
for i in range(a):
    xx = -heappop(h)
    xx -= x
    heappush(h, -xx)
h = list(map(lambda x:-x, h))
t = b * y
for i in range(n):
    d = max(0, min(h[i], t))
    h[i] -= d
    t -= d
for i in range(n):
    if h[i] > 0:
        print('No')
        break
else:
    print('Yes')
0