結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
114,344 KB
testcase_01 AC 191 ms
114,152 KB
testcase_02 AC 176 ms
105,652 KB
testcase_03 AC 124 ms
98,388 KB
testcase_04 AC 177 ms
107,260 KB
testcase_05 AC 179 ms
106,732 KB
testcase_06 AC 181 ms
106,844 KB
testcase_07 AC 159 ms
111,028 KB
testcase_08 AC 147 ms
105,144 KB
testcase_09 AC 144 ms
105,392 KB
testcase_10 AC 144 ms
105,300 KB
testcase_11 AC 157 ms
112,680 KB
testcase_12 AC 165 ms
112,972 KB
testcase_13 AC 168 ms
112,852 KB
testcase_14 AC 165 ms
112,820 KB
testcase_15 AC 174 ms
113,832 KB
testcase_16 AC 167 ms
114,716 KB
testcase_17 AC 167 ms
114,700 KB
testcase_18 AC 38 ms
52,756 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 39 ms
52,876 KB
testcase_26 AC 38 ms
52,088 KB
testcase_27 AC 39 ms
53,832 KB
testcase_28 AC 39 ms
51,900 KB
testcase_29 AC 38 ms
52,864 KB
testcase_30 AC 42 ms
52,760 KB
testcase_31 AC 39 ms
52,420 KB
testcase_32 AC 39 ms
53,344 KB
testcase_33 AC 44 ms
58,296 KB
testcase_34 AC 40 ms
52,400 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