結果

問題 No.1736 Princess vs. Dragoness
ユーザー MasKoaTSMasKoaTS
提出日時 2021-11-12 21:34:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 90,672 KB
最終ジャッジ日時 2024-11-25 17:18:55
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
86,700 KB
testcase_01 AC 109 ms
86,600 KB
testcase_02 AC 113 ms
86,824 KB
testcase_03 AC 128 ms
89,204 KB
testcase_04 AC 141 ms
89,656 KB
testcase_05 AC 129 ms
89,152 KB
testcase_06 AC 147 ms
90,416 KB
testcase_07 AC 155 ms
90,084 KB
testcase_08 AC 145 ms
90,392 KB
testcase_09 AC 153 ms
90,500 KB
testcase_10 AC 125 ms
88,892 KB
testcase_11 AC 171 ms
90,608 KB
testcase_12 AC 153 ms
89,348 KB
testcase_13 AC 156 ms
90,388 KB
testcase_14 AC 155 ms
90,312 KB
testcase_15 AC 136 ms
89,740 KB
testcase_16 AC 138 ms
89,584 KB
testcase_17 AC 149 ms
90,180 KB
testcase_18 AC 143 ms
89,936 KB
testcase_19 AC 142 ms
89,704 KB
testcase_20 AC 125 ms
89,292 KB
testcase_21 AC 145 ms
89,940 KB
testcase_22 AC 153 ms
90,372 KB
testcase_23 AC 147 ms
90,392 KB
testcase_24 AC 126 ms
88,388 KB
testcase_25 AC 153 ms
90,104 KB
testcase_26 AC 162 ms
90,672 KB
testcase_27 AC 147 ms
89,844 KB
testcase_28 AC 143 ms
89,788 KB
testcase_29 AC 144 ms
89,844 KB
testcase_30 AC 145 ms
90,340 KB
testcase_31 AC 147 ms
90,140 KB
testcase_32 AC 157 ms
90,184 KB
testcase_33 AC 109 ms
86,632 KB
testcase_34 AC 112 ms
86,328 KB
testcase_35 AC 110 ms
86,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from copy import deepcopy as dcopy
import math
import sys
sys.setrecursionlimit(10**6)
def input():
    return sys.stdin.readline().rstrip()
def getN():
	return int(sys.stdin.readline())
def getNs():
	return map(int,sys.stdin.readline().split())
def getList():
	return list(map(int,sys.stdin.readline().split()))
def strinps(n):
	return [sys.stdin.readline().rstrip() for _ in range(n)]
pi = 3.141592653589793
mod = 10**9+7
MOD = 998244353
INF = math.inf
dx = [1,0,-1,0];	dy = [0,1,0,-1]


"""
Main Code
"""

n,a,b,x,y = getNs()
h = getList()

hque = []
for i in h:
	hq.heappush(hque,-i)
for _ in [0]*a:
	hp = hq.heappop(hque)
	hq.heappush(hque,hp+x)
s = 0
while(hque):
	hp = -hq.heappop(hque)
	#print(hp)
	s += max(0,hp)
if(s <= y*b):
	print("Yes")
else:
	print("No")
0