結果

問題 No.972 選び方のスコア
ユーザー titiatitia
提出日時 2020-01-17 21:57:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-06-25 19:54:22
合計ジャッジ時間 11,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
53,100 KB
testcase_01 AC 439 ms
53,324 KB
testcase_02 AC 407 ms
51,028 KB
testcase_03 AC 215 ms
31,672 KB
testcase_04 AC 433 ms
52,748 KB
testcase_05 AC 431 ms
52,852 KB
testcase_06 AC 433 ms
52,808 KB
testcase_07 AC 319 ms
42,588 KB
testcase_08 AC 324 ms
53,268 KB
testcase_09 AC 326 ms
51,484 KB
testcase_10 AC 318 ms
53,140 KB
testcase_11 AC 323 ms
52,772 KB
testcase_12 AC 342 ms
53,060 KB
testcase_13 AC 336 ms
52,936 KB
testcase_14 AC 331 ms
52,952 KB
testcase_15 AC 346 ms
52,776 KB
testcase_16 AC 341 ms
52,928 KB
testcase_17 AC 339 ms
53,052 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 28 ms
10,752 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 28 ms
10,752 KB
testcase_32 AC 28 ms
10,880 KB
testcase_33 AC 29 ms
10,752 KB
testcase_34 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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

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

from itertools import accumulate

S=list(accumulate(A))
S2=list(accumulate(A[::-1]))

ANS=0

for i in range(N//2):
    #print(S[i]+S2[i]-A[i+1]*(2*(i+1)))
    ANS=max(ANS,S[i]+S2[i]-A[i+1]*(2*(i+1)))

A=A[::-1]

S=list(accumulate(A))
S2=list(accumulate(A[::-1]))


for i in range(N//2):
    #print(S[i]+S2[i]-A[i+1]*(2*(i+1)))
    ANS=max(ANS,S[i]+S2[i]-A[i+1]*(2*(i+1)))



print(ANS)
0