結果

問題 No.972 選び方のスコア
ユーザー rlangevinrlangevin
提出日時 2023-07-13 08:59:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-09-14 20:36:39
合計ジャッジ時間 6,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
101,760 KB
testcase_01 AC 141 ms
101,888 KB
testcase_02 AC 132 ms
107,392 KB
testcase_03 AC 86 ms
83,584 KB
testcase_04 AC 135 ms
109,056 KB
testcase_05 AC 135 ms
108,544 KB
testcase_06 AC 134 ms
108,544 KB
testcase_07 AC 113 ms
99,328 KB
testcase_08 AC 100 ms
107,392 KB
testcase_09 AC 100 ms
107,392 KB
testcase_10 AC 99 ms
107,392 KB
testcase_11 AC 106 ms
102,144 KB
testcase_12 AC 111 ms
101,760 KB
testcase_13 AC 113 ms
101,760 KB
testcase_14 AC 109 ms
101,888 KB
testcase_15 AC 123 ms
101,760 KB
testcase_16 AC 123 ms
101,888 KB
testcase_17 AC 121 ms
102,144 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 40 ms
51,968 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 40 ms
51,712 KB
testcase_28 AC 39 ms
51,584 KB
testcase_29 AC 39 ms
51,456 KB
testcase_30 AC 40 ms
51,712 KB
testcase_31 AC 40 ms
51,584 KB
testcase_32 AC 41 ms
51,584 KB
testcase_33 AC 41 ms
52,224 KB
testcase_34 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
A.sort()
ans = 0
now = 0
for i in range((N-1)//2):
    now += A[i] + A[-1-i]
    ans = max(ans, now - 2 * (i + 1) * A[i + 1])

print(ans)
0