結果

問題 No.972 選び方のスコア
ユーザー maspymaspy
提出日時 2020-03-18 13:02:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,664 KB
最終ジャッジ日時 2024-12-14 01:44:56
合計ジャッジ時間 8,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
29,536 KB
testcase_01 AC 253 ms
29,376 KB
testcase_02 AC 242 ms
28,480 KB
testcase_03 AC 133 ms
19,960 KB
testcase_04 AC 257 ms
29,536 KB
testcase_05 AC 260 ms
29,664 KB
testcase_06 AC 258 ms
29,664 KB
testcase_07 AC 188 ms
24,616 KB
testcase_08 AC 175 ms
29,412 KB
testcase_09 AC 172 ms
28,892 KB
testcase_10 AC 168 ms
29,412 KB
testcase_11 AC 168 ms
29,360 KB
testcase_12 AC 178 ms
29,544 KB
testcase_13 AC 176 ms
29,536 KB
testcase_14 AC 177 ms
29,540 KB
testcase_15 AC 188 ms
28,844 KB
testcase_16 AC 186 ms
29,408 KB
testcase_17 AC 182 ms
29,404 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 29 ms
10,624 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 28 ms
10,624 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 AC 30 ms
10,624 KB
testcase_34 AC 30 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