結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
42,652 KB
testcase_01 AC 306 ms
41,876 KB
testcase_02 AC 306 ms
41,192 KB
testcase_03 AC 165 ms
26,928 KB
testcase_04 AC 315 ms
41,780 KB
testcase_05 AC 313 ms
41,768 KB
testcase_06 AC 309 ms
41,784 KB
testcase_07 AC 233 ms
34,860 KB
testcase_08 AC 231 ms
42,708 KB
testcase_09 AC 223 ms
40,808 KB
testcase_10 AC 222 ms
42,832 KB
testcase_11 AC 217 ms
42,468 KB
testcase_12 AC 233 ms
42,068 KB
testcase_13 AC 228 ms
41,976 KB
testcase_14 AC 228 ms
41,976 KB
testcase_15 AC 237 ms
42,420 KB
testcase_16 AC 239 ms
42,676 KB
testcase_17 AC 243 ms
42,832 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 30 ms
10,624 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 29 ms
10,880 KB
testcase_33 AC 30 ms
10,624 KB
testcase_34 AC 31 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-1)//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