結果

問題 No.972 選び方のスコア
ユーザー AEnAEn
提出日時 2023-04-17 21:55:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 109,940 KB
最終ジャッジ日時 2024-10-12 22:18:27
合計ジャッジ時間 6,229 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
101,500 KB
testcase_01 AC 182 ms
101,720 KB
testcase_02 AC 171 ms
107,012 KB
testcase_03 AC 110 ms
90,052 KB
testcase_04 AC 172 ms
109,816 KB
testcase_05 AC 172 ms
109,804 KB
testcase_06 AC 171 ms
109,872 KB
testcase_07 AC 149 ms
103,732 KB
testcase_08 AC 139 ms
108,536 KB
testcase_09 AC 134 ms
108,740 KB
testcase_10 AC 117 ms
108,240 KB
testcase_11 AC 123 ms
101,496 KB
testcase_12 AC 161 ms
101,612 KB
testcase_13 AC 157 ms
101,408 KB
testcase_14 AC 161 ms
101,636 KB
testcase_15 AC 166 ms
101,748 KB
testcase_16 AC 162 ms
102,060 KB
testcase_17 AC 162 ms
101,460 KB
testcase_18 AC 37 ms
52,432 KB
testcase_19 AC 178 ms
109,588 KB
testcase_20 AC 175 ms
109,272 KB
testcase_21 AC 175 ms
109,016 KB
testcase_22 AC 168 ms
109,924 KB
testcase_23 AC 178 ms
109,940 KB
testcase_24 AC 176 ms
109,480 KB
testcase_25 AC 38 ms
51,952 KB
testcase_26 AC 38 ms
51,960 KB
testcase_27 AC 38 ms
52,436 KB
testcase_28 AC 38 ms
52,644 KB
testcase_29 AC 37 ms
52,044 KB
testcase_30 AC 37 ms
53,128 KB
testcase_31 AC 38 ms
52,424 KB
testcase_32 AC 37 ms
52,132 KB
testcase_33 AC 43 ms
58,744 KB
testcase_34 AC 40 ms
52,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
a.sort()

b = [0]*(N+1)
for i in range(1,N+1):
    b[i] += b[i-1]+a[i-1]
res = 0
for i in range(1,N-1):
    ok,ng = 0,min(i,N-1-i)+1
    while ng-ok>1:
        mid = (ok+ng)//2
        if b[i-mid+1]-b[i-mid]+b[N-mid+1]-b[N-mid]-2*a[i]>0:
            ok = mid
        else:
            ng = mid
    res = max(res,b[i]-b[i-ok]+b[N]-b[N-ok]-2*ok*a[i])
print(res)
    
0