結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
41,964 KB
testcase_01 AC 536 ms
41,984 KB
testcase_02 AC 495 ms
40,468 KB
testcase_03 AC 263 ms
26,092 KB
testcase_04 AC 534 ms
41,756 KB
testcase_05 AC 536 ms
41,788 KB
testcase_06 AC 560 ms
41,912 KB
testcase_07 AC 408 ms
34,264 KB
testcase_08 AC 420 ms
42,128 KB
testcase_09 AC 400 ms
41,084 KB
testcase_10 AC 395 ms
42,128 KB
testcase_11 AC 400 ms
42,000 KB
testcase_12 AC 422 ms
42,000 KB
testcase_13 AC 411 ms
41,964 KB
testcase_14 AC 423 ms
42,112 KB
testcase_15 AC 434 ms
41,836 KB
testcase_16 AC 438 ms
42,156 KB
testcase_17 AC 429 ms
42,088 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,752 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 28 ms
10,624 KB
testcase_32 AC 29 ms
10,624 KB
testcase_33 AC 29 ms
10,624 KB
testcase_34 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = sorted(list(map(int,input().split())))
S = [0 for k in range(N)]
S[0] = A[0]
for k in range(1,N):
    S[k] = S[k-1] + A[k]
B = A[::-1]
T = [0 for k in range(N)]
T[0] = B[0]
for k in range(1,N):
    T[k] = T[k-1] + B[k]
ans = -float("inf")
for k in range(1,N-1):
    ans = max(ans,-k*A[k]+S[k-1]+T[k-1]-k*A[k])
print(ans)
0