結果

問題 No.972 選び方のスコア
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-09 11:03:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,088 KB
最終ジャッジ日時 2024-09-26 00:06:02
合計ジャッジ時間 7,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
119,028 KB
testcase_01 AC 185 ms
118,912 KB
testcase_02 AC 183 ms
118,864 KB
testcase_03 AC 119 ms
97,152 KB
testcase_04 AC 176 ms
115,760 KB
testcase_05 AC 177 ms
115,488 KB
testcase_06 AC 176 ms
115,244 KB
testcase_07 AC 178 ms
115,384 KB
testcase_08 AC 153 ms
115,932 KB
testcase_09 AC 155 ms
115,780 KB
testcase_10 AC 125 ms
115,772 KB
testcase_11 AC 123 ms
117,324 KB
testcase_12 AC 150 ms
117,184 KB
testcase_13 AC 143 ms
117,184 KB
testcase_14 AC 151 ms
117,068 KB
testcase_15 AC 172 ms
118,340 KB
testcase_16 AC 169 ms
119,088 KB
testcase_17 AC 161 ms
118,196 KB
testcase_18 AC 46 ms
55,296 KB
testcase_19 AC 187 ms
115,464 KB
testcase_20 AC 192 ms
114,840 KB
testcase_21 AC 190 ms
115,092 KB
testcase_22 AC 178 ms
115,636 KB
testcase_23 AC 186 ms
114,856 KB
testcase_24 AC 185 ms
114,992 KB
testcase_25 AC 48 ms
55,168 KB
testcase_26 AC 48 ms
55,680 KB
testcase_27 AC 48 ms
55,552 KB
testcase_28 AC 49 ms
55,552 KB
testcase_29 AC 48 ms
55,552 KB
testcase_30 AC 48 ms
55,424 KB
testcase_31 AC 47 ms
55,040 KB
testcase_32 AC 48 ms
55,168 KB
testcase_33 AC 48 ms
55,936 KB
testcase_34 AC 47 ms
55,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
A.sort()
S = list(accumulate([0]+A))
ans = 0
for i in range(1,N-1):
    
    m = A[i]
    
    l = min(i-0,N-i-1)
    if (A[i-l] + A[N-l]) >= 2*m:
        
        val = S[i] - S[i-l] + S[-1] - S[-1-l] - 2*l*m
        
        ans = max(ans,val)
        continue
    elif A[i-1]+A[N-1] < 2*m:
        continue
    else:
        
        y = l
        x = 1
        while y - x > 1:
            
            mid = (y+x)//2
            
            if (A[i-mid] + A[N-mid]) >= 2*m:
                x = mid
            else:
                y = mid
        val = S[i] - S[i - x] + S[-1] - S[-1-x] - 2*x*m
        ans = max(ans,val)
print(ans)
            
0