結果

問題 No.1736 Princess vs. Dragoness
ユーザー ShirotsumeShirotsume
提出日時 2021-10-14 22:53:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-04 04:08:40
合計ジャッジ時間 2,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 42 ms
59,776 KB
testcase_04 AC 48 ms
65,408 KB
testcase_05 AC 38 ms
60,080 KB
testcase_06 AC 50 ms
67,456 KB
testcase_07 AC 69 ms
76,544 KB
testcase_08 AC 57 ms
69,760 KB
testcase_09 AC 66 ms
74,880 KB
testcase_10 AC 46 ms
60,416 KB
testcase_11 AC 70 ms
76,524 KB
testcase_12 AC 52 ms
64,596 KB
testcase_13 AC 59 ms
67,328 KB
testcase_14 AC 57 ms
67,328 KB
testcase_15 AC 48 ms
61,952 KB
testcase_16 AC 57 ms
65,792 KB
testcase_17 AC 57 ms
67,584 KB
testcase_18 AC 51 ms
63,616 KB
testcase_19 AC 51 ms
63,744 KB
testcase_20 AC 44 ms
59,904 KB
testcase_21 AC 59 ms
68,480 KB
testcase_22 AC 63 ms
72,320 KB
testcase_23 AC 53 ms
67,840 KB
testcase_24 AC 33 ms
52,736 KB
testcase_25 AC 60 ms
71,040 KB
testcase_26 AC 58 ms
71,424 KB
testcase_27 AC 57 ms
69,888 KB
testcase_28 AC 46 ms
64,640 KB
testcase_29 AC 42 ms
61,824 KB
testcase_30 AC 50 ms
65,408 KB
testcase_31 AC 62 ms
73,600 KB
testcase_32 AC 61 ms
74,368 KB
testcase_33 AC 34 ms
52,352 KB
testcase_34 AC 33 ms
52,224 KB
testcase_35 AC 31 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve2(n, a, b, x, y, h):
    import heapq
    hm = [-x for x in h]
    heapq.heapify(hm)
    for i in range(a):
        target = heapq.heappop(hm)
        target = min(0, x + target)
        heapq.heappush(hm, target)
    h = [-x for x in hm]
    if sum(h) <= b * y:
        return 'Yes'
    else:
        return 'No'


n, a, b, x, y = map(int,input().split())
h = list(map(int,input().split()))
print(solve2(n, a, b, x, y, h))
0