結果

問題 No.1736 Princess vs. Dragoness
ユーザー horitaka1999horitaka1999
提出日時 2021-11-12 21:50:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 77,116 KB
最終ジャッジ日時 2024-11-25 18:06:34
合計ジャッジ時間 3,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 40 ms
54,080 KB
testcase_02 AC 39 ms
52,948 KB
testcase_03 AC 49 ms
61,828 KB
testcase_04 AC 61 ms
67,940 KB
testcase_05 AC 42 ms
54,580 KB
testcase_06 AC 77 ms
72,292 KB
testcase_07 AC 74 ms
73,780 KB
testcase_08 AC 69 ms
70,672 KB
testcase_09 AC 74 ms
73,024 KB
testcase_10 AC 42 ms
53,080 KB
testcase_11 AC 85 ms
76,692 KB
testcase_12 AC 61 ms
68,340 KB
testcase_13 AC 66 ms
69,980 KB
testcase_14 AC 63 ms
68,800 KB
testcase_15 AC 50 ms
61,860 KB
testcase_16 AC 64 ms
69,168 KB
testcase_17 AC 68 ms
70,468 KB
testcase_18 AC 70 ms
68,060 KB
testcase_19 AC 60 ms
67,044 KB
testcase_20 AC 48 ms
60,492 KB
testcase_21 AC 72 ms
73,648 KB
testcase_22 AC 74 ms
72,920 KB
testcase_23 AC 61 ms
68,004 KB
testcase_24 AC 42 ms
53,276 KB
testcase_25 AC 67 ms
71,096 KB
testcase_26 AC 72 ms
74,212 KB
testcase_27 AC 67 ms
69,836 KB
testcase_28 AC 61 ms
67,404 KB
testcase_29 AC 56 ms
64,464 KB
testcase_30 AC 65 ms
69,104 KB
testcase_31 AC 76 ms
74,896 KB
testcase_32 AC 81 ms
77,116 KB
testcase_33 AC 40 ms
53,420 KB
testcase_34 AC 40 ms
53,312 KB
testcase_35 AC 41 ms
53,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
N,A,B,X,Y = map(int,input().split())
H = list(map(int,input().split()))
q = []
for h in H:
    heappush(q,-h)
while A and q:
    h = heappop(q)
    h *= -1
    if h > X:
        heappush(q,-(h-X))
    A -=1
SUMS = 0
for h in q:
    SUMS += -h
if SUMS <= Y * B:
    print('Yes')
else:
    print('No')

    
0