結果

問題 No.972 選び方のスコア
ユーザー titiatitia
提出日時 2020-01-17 22:49:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 116,220 KB
最終ジャッジ日時 2024-06-25 23:07:15
合計ジャッジ時間 6,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
115,460 KB
testcase_01 AC 196 ms
115,604 KB
testcase_02 AC 185 ms
107,224 KB
testcase_03 AC 119 ms
96,768 KB
testcase_04 AC 186 ms
108,464 KB
testcase_05 AC 182 ms
108,432 KB
testcase_06 AC 181 ms
108,104 KB
testcase_07 AC 151 ms
105,936 KB
testcase_08 AC 150 ms
107,136 KB
testcase_09 AC 148 ms
106,880 KB
testcase_10 AC 127 ms
107,100 KB
testcase_11 AC 133 ms
114,216 KB
testcase_12 AC 180 ms
113,952 KB
testcase_13 AC 170 ms
114,100 KB
testcase_14 AC 185 ms
114,392 KB
testcase_15 AC 188 ms
115,216 KB
testcase_16 AC 168 ms
116,220 KB
testcase_17 AC 167 ms
115,636 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 182 ms
108,160 KB
testcase_20 AC 188 ms
108,160 KB
testcase_21 AC 186 ms
108,392 KB
testcase_22 AC 174 ms
108,448 KB
testcase_23 AC 171 ms
108,288 KB
testcase_24 AC 184 ms
108,152 KB
testcase_25 AC 42 ms
52,224 KB
testcase_26 AC 40 ms
52,480 KB
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 42 ms
52,352 KB
testcase_29 AC 42 ms
52,352 KB
testcase_30 AC 42 ms
52,608 KB
testcase_31 AC 41 ms
52,096 KB
testcase_32 AC 41 ms
51,968 KB
testcase_33 AC 43 ms
58,752 KB
testcase_34 AC 41 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N=int(input())
A=sorted(map(int,input().split()))

from itertools import accumulate
S=[0]+list(accumulate(A))

if N<=2:
    print(0)
    sys.exit()

ANS=0
for i in range(1,N-1):
    OK=0
    NG=i+1

    while NG-OK>1:
        mid=(OK+NG)//2

        if mid>=1 and A[-mid]-A[i]>A[i]-A[i-mid]:
            OK=mid
        else:
            NG=mid

    if OK==0:
        continue

    #print(i,OK,S[-1]-S[-OK-1]+S[i+1]-S[i-OK]-A[i]*(2*OK+1))
    ANS=max(ANS,S[-1]-S[-OK-1]+S[i+1]-S[i-OK]-A[i]*(2*OK+1))

print(ANS)

    
    
    
0