結果

問題 No.972 選び方のスコア
ユーザー maspymaspy
提出日時 2020-03-18 13:02:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,664 KB
最終ジャッジ日時 2024-05-08 02:13:56
合計ジャッジ時間 7,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
29,540 KB
testcase_01 AC 243 ms
29,632 KB
testcase_02 AC 228 ms
28,612 KB
testcase_03 AC 127 ms
20,084 KB
testcase_04 AC 247 ms
29,520 KB
testcase_05 AC 243 ms
29,540 KB
testcase_06 AC 249 ms
29,412 KB
testcase_07 AC 181 ms
24,700 KB
testcase_08 AC 168 ms
29,664 KB
testcase_09 AC 164 ms
29,020 KB
testcase_10 AC 159 ms
29,460 KB
testcase_11 AC 163 ms
29,364 KB
testcase_12 AC 171 ms
29,540 KB
testcase_13 AC 174 ms
29,412 KB
testcase_14 AC 171 ms
29,416 KB
testcase_15 AC 187 ms
28,844 KB
testcase_16 AC 182 ms
29,532 KB
testcase_17 AC 182 ms
29,408 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 28 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 28 ms
10,752 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 27 ms
10,752 KB
testcase_33 AC 29 ms
10,880 KB
testcase_34 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

N, *A = map(int, read().split())
A = deque(sorted(A))

S = A.popleft()
med = S
best_score = 0
elem = 1
while len(A) > 1:
    L = A.popleft()
    R = A.pop()
    med = L
    S += L + R
    elem += 2
    score = S - med * elem
    if best_score < score:
        best_score = score

print(best_score)
0