結果

問題 No.972 選び方のスコア
ユーザー AEnAEn
提出日時 2023-04-17 21:51:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 110,200 KB
最終ジャッジ日時 2024-10-12 22:15:55
合計ジャッジ時間 7,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
101,572 KB
testcase_01 AC 164 ms
101,828 KB
testcase_02 AC 153 ms
106,880 KB
testcase_03 AC 112 ms
90,624 KB
testcase_04 AC 175 ms
109,696 KB
testcase_05 AC 175 ms
109,568 KB
testcase_06 AC 158 ms
109,568 KB
testcase_07 AC 139 ms
106,496 KB
testcase_08 AC 185 ms
108,160 KB
testcase_09 AC 127 ms
108,672 KB
testcase_10 AC 113 ms
108,416 KB
testcase_11 AC 118 ms
101,504 KB
testcase_12 AC 160 ms
101,632 KB
testcase_13 AC 134 ms
101,504 KB
testcase_14 AC 153 ms
101,632 KB
testcase_15 AC 157 ms
101,436 KB
testcase_16 AC 148 ms
102,136 KB
testcase_17 AC 152 ms
101,760 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
51,456 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 37 ms
51,712 KB
testcase_29 AC 36 ms
51,712 KB
testcase_30 AC 36 ms
51,712 KB
testcase_31 AC 38 ms
51,584 KB
testcase_32 AC 37 ms
51,712 KB
testcase_33 AC 42 ms
58,112 KB
testcase_34 AC 39 ms
51,712 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]-b[i-mid]+b[N]-b[N-mid]-2*mid*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