結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
53,088 KB
testcase_01 AC 428 ms
53,304 KB
testcase_02 AC 391 ms
50,992 KB
testcase_03 AC 211 ms
31,656 KB
testcase_04 AC 436 ms
52,900 KB
testcase_05 AC 422 ms
52,840 KB
testcase_06 AC 432 ms
52,796 KB
testcase_07 AC 313 ms
42,492 KB
testcase_08 AC 319 ms
53,256 KB
testcase_09 AC 314 ms
51,600 KB
testcase_10 AC 328 ms
53,260 KB
testcase_11 AC 319 ms
52,856 KB
testcase_12 AC 333 ms
53,048 KB
testcase_13 AC 338 ms
53,068 KB
testcase_14 AC 333 ms
52,936 KB
testcase_15 AC 345 ms
52,760 KB
testcase_16 AC 349 ms
52,924 KB
testcase_17 AC 337 ms
53,128 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 29 ms
10,880 KB
testcase_26 AC 28 ms
10,880 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 26 ms
10,752 KB
testcase_30 AC 28 ms
10,880 KB
testcase_31 AC 28 ms
10,880 KB
testcase_32 AC 28 ms
10,752 KB
testcase_33 AC 28 ms
10,752 KB
testcase_34 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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