結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー suosuo
提出日時 2021-11-12 21:51:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 211,076 KB
最終ジャッジ日時 2024-11-25 18:08:29
合計ジャッジ時間 7,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,144 KB
testcase_01 AC 40 ms
53,816 KB
testcase_02 AC 40 ms
52,416 KB
testcase_03 AC 39 ms
53,372 KB
testcase_04 AC 244 ms
119,512 KB
testcase_05 WA -
testcase_06 AC 226 ms
211,076 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 139 ms
137,564 KB
testcase_09 AC 185 ms
161,920 KB
testcase_10 AC 134 ms
93,080 KB
testcase_11 AC 104 ms
92,500 KB
testcase_12 AC 59 ms
75,740 KB
testcase_13 AC 171 ms
111,104 KB
testcase_14 WA -
testcase_15 AC 230 ms
118,324 KB
testcase_16 AC 123 ms
84,872 KB
testcase_17 AC 154 ms
101,676 KB
testcase_18 AC 156 ms
106,140 KB
testcase_19 AC 143 ms
108,408 KB
testcase_20 AC 89 ms
88,592 KB
testcase_21 AC 204 ms
130,556 KB
testcase_22 AC 211 ms
113,008 KB
testcase_23 AC 233 ms
147,464 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 222 ms
130,700 KB
testcase_27 WA -
testcase_28 AC 217 ms
128,316 KB
testcase_29 AC 246 ms
133,628 KB
testcase_30 AC 274 ms
119,464 KB
testcase_31 AC 231 ms
118,820 KB
testcase_32 AC 234 ms
136,296 KB
testcase_33 AC 42 ms
60,544 KB
testcase_34 AC 37 ms
52,104 KB
testcase_35 AC 43 ms
59,600 KB
testcase_36 AC 40 ms
57,656 KB
testcase_37 AC 37 ms
52,528 KB
testcase_38 AC 45 ms
60,744 KB
testcase_39 AC 47 ms
62,656 KB
testcase_40 AC 44 ms
60,596 KB
testcase_41 AC 45 ms
61,532 KB
testcase_42 AC 44 ms
60,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def ok(m):
  nh = []
  for i in h:
    nh.append(i-m)
  na = a
  for i in range(n):
    if nh[i] > x:
      v = max(0,nh[i]//x)
      na -= v
      nh[i] -= v*x
    if na <= 0:
      break
  nh.sort()
  s = 0
  for i in range(n-1,-1,-1):
    if na > 0 and nh[i] > 0:
      na -= 1
      nh[i] -= x
    if nh[i] > 0:
      s += nh[i]
  if s <= b*y:
    return True
  return False
    
  

n,a,b,x,y = map(int,input().split())
h = list(map(int,sys.stdin.readline().split()))
h.sort()
l = 0
r = 10**9
while r - l > 1:
  m = (r + l) // 2
  if ok(m):
    r = m
  else:
    l = m
if ok(l):
  print(l)
else:
  print(r)
0