結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー 河野竜也河野竜也
提出日時 2022-06-22 16:12:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,185 ms / 3,000 ms
コード長 445 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,152 KB
最終ジャッジ日時 2024-10-15 20:19:19
合計ジャッジ時間 38,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 44 ms
52,736 KB
testcase_02 AC 45 ms
52,864 KB
testcase_03 AC 60 ms
62,336 KB
testcase_04 AC 1,584 ms
107,804 KB
testcase_05 AC 2,032 ms
107,496 KB
testcase_06 AC 1,123 ms
106,488 KB
testcase_07 AC 61 ms
62,208 KB
testcase_08 AC 308 ms
93,308 KB
testcase_09 AC 431 ms
102,336 KB
testcase_10 AC 1,079 ms
89,216 KB
testcase_11 AC 691 ms
84,992 KB
testcase_12 AC 115 ms
76,232 KB
testcase_13 AC 1,056 ms
95,732 KB
testcase_14 AC 1,314 ms
100,608 KB
testcase_15 AC 1,095 ms
107,736 KB
testcase_16 AC 1,219 ms
84,864 KB
testcase_17 AC 639 ms
92,664 KB
testcase_18 AC 1,403 ms
91,444 KB
testcase_19 AC 363 ms
91,728 KB
testcase_20 AC 249 ms
82,944 KB
testcase_21 AC 681 ms
102,268 KB
testcase_22 AC 1,147 ms
104,560 KB
testcase_23 AC 1,688 ms
107,620 KB
testcase_24 AC 1,871 ms
107,260 KB
testcase_25 AC 2,179 ms
107,656 KB
testcase_26 AC 1,703 ms
106,464 KB
testcase_27 AC 2,185 ms
107,388 KB
testcase_28 AC 1,715 ms
106,864 KB
testcase_29 AC 2,081 ms
108,152 KB
testcase_30 AC 1,830 ms
107,628 KB
testcase_31 AC 1,706 ms
106,476 KB
testcase_32 AC 1,984 ms
106,612 KB
testcase_33 AC 83 ms
71,040 KB
testcase_34 AC 73 ms
75,776 KB
testcase_35 AC 104 ms
76,160 KB
testcase_36 AC 96 ms
76,032 KB
testcase_37 AC 84 ms
75,648 KB
testcase_38 AC 102 ms
76,288 KB
testcase_39 AC 91 ms
76,032 KB
testcase_40 AC 82 ms
72,960 KB
testcase_41 AC 101 ms
76,416 KB
testcase_42 AC 89 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n,a,b,x,y=map(int,input().split())
h=list(map(int,input().split()))
def check(k):
  c=[]
  for i in range(n):
    c.append(min(0,k-h[i]))
  heapq.heapify(c)

  for i in range(a):
    target=heapq.heappop(c)
    target=min(0,x+target)
    heapq.heappush(c,target)

  if (-1)*sum(c)<=b*y:
    return True
  else:
    return False

ub=10**9
lb=-1
while ub-lb>1:
  mid=(ub+lb)//2
  if check(mid):
    ub=mid
  else:
    lb=mid
print(ub)
0