結果

問題 No.972 選び方のスコア
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-25 17:58:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 108,848 KB
最終ジャッジ日時 2024-09-22 11:26:41
合計ジャッジ時間 6,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
102,004 KB
testcase_01 AC 134 ms
102,036 KB
testcase_02 AC 124 ms
107,612 KB
testcase_03 AC 83 ms
86,388 KB
testcase_04 AC 128 ms
108,576 KB
testcase_05 AC 127 ms
108,256 KB
testcase_06 AC 132 ms
108,084 KB
testcase_07 AC 110 ms
102,180 KB
testcase_08 AC 93 ms
107,228 KB
testcase_09 AC 93 ms
107,056 KB
testcase_10 AC 92 ms
106,860 KB
testcase_11 AC 97 ms
102,076 KB
testcase_12 AC 104 ms
102,156 KB
testcase_13 AC 104 ms
102,156 KB
testcase_14 AC 105 ms
102,152 KB
testcase_15 AC 117 ms
101,656 KB
testcase_16 AC 110 ms
101,940 KB
testcase_17 AC 111 ms
101,856 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 37 ms
53,540 KB
testcase_26 AC 36 ms
52,072 KB
testcase_27 AC 37 ms
52,540 KB
testcase_28 AC 38 ms
52,464 KB
testcase_29 AC 37 ms
52,248 KB
testcase_30 AC 37 ms
53,728 KB
testcase_31 AC 37 ms
52,968 KB
testcase_32 AC 37 ms
53,164 KB
testcase_33 AC 38 ms
52,640 KB
testcase_34 AC 37 ms
53,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
A.sort()

ans = 0
X = 0
Y = 0
size = 0

i = 0
j = N - 1
while i + 1 < j:
    X += A[i]
    Y += A[j]
    size += 2
    # 奇数個選ぶ場合
    med = A[i + 1]
    tmp = X + Y + med - med * (size + 1)
    ans = max(ans, tmp)

    # 偶数
    if i + 2 < j:
        med = A[i + 1] + A[i + 2]
        tmp = X + Y + med - med * (size + 2) // 2
        ans = max(ans, tmp)

    i += 1
    j -= 1

print(ans)
0