結果

問題 No.1736 Princess vs. Dragoness
ユーザー horitaka1999horitaka1999
提出日時 2021-11-12 21:50:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-05-04 08:18:37
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 33 ms
52,480 KB
testcase_03 AC 38 ms
59,392 KB
testcase_04 AC 51 ms
67,072 KB
testcase_05 AC 36 ms
53,248 KB
testcase_06 AC 65 ms
72,192 KB
testcase_07 AC 62 ms
73,728 KB
testcase_08 AC 56 ms
70,400 KB
testcase_09 AC 63 ms
72,704 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 69 ms
76,160 KB
testcase_12 AC 50 ms
66,432 KB
testcase_13 AC 54 ms
68,864 KB
testcase_14 AC 53 ms
68,224 KB
testcase_15 AC 42 ms
61,696 KB
testcase_16 AC 53 ms
67,456 KB
testcase_17 AC 56 ms
70,400 KB
testcase_18 AC 53 ms
67,712 KB
testcase_19 AC 51 ms
66,560 KB
testcase_20 AC 39 ms
59,136 KB
testcase_21 AC 67 ms
72,192 KB
testcase_22 AC 65 ms
72,704 KB
testcase_23 AC 52 ms
65,792 KB
testcase_24 AC 33 ms
52,736 KB
testcase_25 AC 56 ms
69,632 KB
testcase_26 AC 61 ms
73,344 KB
testcase_27 AC 53 ms
68,992 KB
testcase_28 AC 49 ms
65,536 KB
testcase_29 AC 51 ms
64,512 KB
testcase_30 AC 60 ms
68,480 KB
testcase_31 AC 70 ms
74,112 KB
testcase_32 AC 70 ms
76,416 KB
testcase_33 AC 33 ms
52,608 KB
testcase_34 AC 32 ms
52,224 KB
testcase_35 AC 32 ms
52,096 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