結果

問題 No.1739 Princess vs. Dragoness (& AoE)
ユーザー ShirotsumeShirotsume
提出日時 2021-10-30 14:17:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,772 ms / 3,000 ms
コード長 434 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,984 KB
最終ジャッジ日時 2024-05-04 04:21:18
合計ジャッジ時間 57,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 2,713 ms
21,984 KB
testcase_05 AC 2,659 ms
21,860 KB
testcase_06 AC 2,125 ms
21,696 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 1,478 ms
17,032 KB
testcase_09 AC 2,157 ms
20,148 KB
testcase_10 AC 1,015 ms
14,928 KB
testcase_11 AC 775 ms
14,160 KB
testcase_12 AC 192 ms
11,648 KB
testcase_13 AC 1,693 ms
17,696 KB
testcase_14 AC 1,904 ms
18,744 KB
testcase_15 AC 2,663 ms
21,652 KB
testcase_16 AC 758 ms
14,028 KB
testcase_17 AC 1,322 ms
16,152 KB
testcase_18 AC 1,187 ms
15,824 KB
testcase_19 AC 1,090 ms
16,012 KB
testcase_20 AC 558 ms
13,408 KB
testcase_21 AC 2,105 ms
19,492 KB
testcase_22 AC 2,408 ms
20,480 KB
testcase_23 AC 2,772 ms
21,656 KB
testcase_24 AC 2,718 ms
21,808 KB
testcase_25 AC 2,597 ms
21,520 KB
testcase_26 AC 2,686 ms
21,816 KB
testcase_27 AC 2,561 ms
21,784 KB
testcase_28 AC 2,719 ms
21,788 KB
testcase_29 AC 2,549 ms
21,808 KB
testcase_30 AC 2,687 ms
21,780 KB
testcase_31 AC 2,735 ms
21,928 KB
testcase_32 AC 2,525 ms
21,676 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 29 ms
10,624 KB
testcase_36 AC 26 ms
10,624 KB
testcase_37 AC 25 ms
10,752 KB
testcase_38 AC 34 ms
10,880 KB
testcase_39 AC 46 ms
10,880 KB
testcase_40 AC 34 ms
10,752 KB
testcase_41 AC 36 ms
10,624 KB
testcase_42 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(k,a,b,x,y):
  c=[max(0,i-k) for i in h]
  for i in range(n):
    d=min(a,c[i]//x)
    a-=d
    c[i]-=x*d
  c.sort(reverse=True)
  for i in range(n):
    if a>0:
      c[i]=0
      a-=1
  if sum(c)<=b*y:
    return True
  else:
    return False

n,a,b,x,y=map(int,input().split())
h=list(map(int,input().split()))
ng,ok=-1,10**9
while ok-ng>1:
  mid=(ng+ok)//2
  if is_ok(mid,a,b,x,y):
    ok=mid
  else:
    ng=mid
print(ok)
0