結果

問題 No.972 選び方のスコア
ユーザー convexineqconvexineq
提出日時 2020-01-17 22:32:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-06-25 22:05:06
合計ジャッジ時間 6,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
114,164 KB
testcase_01 AC 167 ms
114,816 KB
testcase_02 AC 163 ms
115,916 KB
testcase_03 AC 112 ms
92,160 KB
testcase_04 AC 168 ms
116,480 KB
testcase_05 AC 168 ms
116,372 KB
testcase_06 AC 173 ms
116,608 KB
testcase_07 AC 145 ms
110,720 KB
testcase_08 AC 130 ms
114,420 KB
testcase_09 AC 130 ms
116,456 KB
testcase_10 AC 114 ms
115,968 KB
testcase_11 AC 116 ms
116,480 KB
testcase_12 AC 146 ms
118,400 KB
testcase_13 AC 141 ms
118,400 KB
testcase_14 AC 142 ms
118,400 KB
testcase_15 AC 151 ms
119,424 KB
testcase_16 AC 151 ms
119,808 KB
testcase_17 AC 150 ms
119,552 KB
testcase_18 AC 36 ms
51,968 KB
testcase_19 AC 170 ms
117,760 KB
testcase_20 AC 170 ms
117,760 KB
testcase_21 AC 170 ms
117,376 KB
testcase_22 AC 165 ms
118,148 KB
testcase_23 AC 171 ms
117,504 KB
testcase_24 AC 170 ms
117,504 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 39 ms
52,336 KB
testcase_29 AC 37 ms
51,840 KB
testcase_30 AC 38 ms
52,608 KB
testcase_31 AC 38 ms
52,096 KB
testcase_32 AC 38 ms
52,352 KB
testcase_33 AC 44 ms
58,624 KB
testcase_34 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
read = sys.stdin.read

#n,m,*d= [int(i) for i in read().split()]

#a,t,k = [int(i) for i in readline().split()]

n,*a = [int(i) for i in read().split()]
a.sort()
from itertools import accumulate
acc = list(accumulate([0]+a))

ans = 0
for i in range(n):
    ok = 0
    ng = min(i,n-i-1)+1
    
    while ng - ok > 1:
        mid = (ok+ng)//2
        if a[i-mid] + a[n-mid] > 2*a[i]: ok = mid
        else: ng = mid

    res = acc[n]-acc[n-ok]+acc[i+1]-acc[i-ok]-a[i]*(2*ok+1)
    #print(res,i,ok)
    if ans < res: ans = res

print(ans)
0