結果

問題 No.972 選び方のスコア
ユーザー NoneNone
提出日時 2021-03-25 21:57:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 120,832 KB
最終ジャッジ日時 2024-05-05 10:55:19
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
114,784 KB
testcase_01 AC 179 ms
114,464 KB
testcase_02 AC 167 ms
105,600 KB
testcase_03 AC 122 ms
98,560 KB
testcase_04 AC 170 ms
107,136 KB
testcase_05 AC 173 ms
107,264 KB
testcase_06 AC 170 ms
106,880 KB
testcase_07 AC 149 ms
111,104 KB
testcase_08 AC 137 ms
105,472 KB
testcase_09 AC 137 ms
105,600 KB
testcase_10 AC 140 ms
105,344 KB
testcase_11 AC 148 ms
112,872 KB
testcase_12 AC 157 ms
113,020 KB
testcase_13 AC 163 ms
112,896 KB
testcase_14 AC 159 ms
113,028 KB
testcase_15 AC 171 ms
114,776 KB
testcase_16 AC 161 ms
114,904 KB
testcase_17 AC 156 ms
114,260 KB
testcase_18 AC 38 ms
51,712 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 37 ms
52,480 KB
testcase_27 AC 36 ms
51,712 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 36 ms
51,840 KB
testcase_30 AC 36 ms
51,840 KB
testcase_31 AC 37 ms
51,712 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 43 ms
57,984 KB
testcase_34 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search_int(ok, ng, test):
    """
    :param ok: solve(x) = True を必ず満たす点
    :param ng: solve(x) = False を必ず満たす点
    """
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if test(mid):
            ok = mid
        else:
            ng = mid
    return ok

##############################################################
import sys
input = sys.stdin.readline

def test(x):
    return A[i-x]+A[-1-x]-m>=0

N=int(input())
A=list(map(int, input().split()))
A.sort()
acc=[0]
for a in A:
    acc.append(acc[-1]+a)

res=0
for i in range(N):
    m=A[i]
    k=binary_search_int(0,min(i+1,N-1-i),test)
    S=acc[i+1]-acc[i-k] +acc[N]-acc[N-k] -m*(2*k+1)
    res=max(res,S)
print(res)
0