結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
41,916 KB
testcase_01 AC 341 ms
42,192 KB
testcase_02 AC 325 ms
40,536 KB
testcase_03 AC 168 ms
26,252 KB
testcase_04 AC 346 ms
41,904 KB
testcase_05 AC 345 ms
41,776 KB
testcase_06 AC 347 ms
41,644 KB
testcase_07 AC 252 ms
34,232 KB
testcase_08 AC 231 ms
42,244 KB
testcase_09 AC 223 ms
40,780 KB
testcase_10 AC 230 ms
42,168 KB
testcase_11 AC 226 ms
41,736 KB
testcase_12 AC 233 ms
41,940 KB
testcase_13 AC 231 ms
42,100 KB
testcase_14 AC 236 ms
41,972 KB
testcase_15 AC 249 ms
41,572 KB
testcase_16 AC 257 ms
41,960 KB
testcase_17 AC 242 ms
41,932 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 31 ms
10,624 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 32 ms
10,880 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 32 ms
10,624 KB
testcase_33 AC 31 ms
10,752 KB
testcase_34 AC 31 ms
10,752 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)))

print(ANS)
0