結果

問題 No.972 選び方のスコア
ユーザー hedwig100hedwig100
提出日時 2020-04-26 12:34:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-11-16 20:51:06
合計ジャッジ時間 15,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
40,500 KB
testcase_01 AC 557 ms
40,832 KB
testcase_02 AC 530 ms
39,008 KB
testcase_03 AC 277 ms
25,412 KB
testcase_04 AC 555 ms
40,236 KB
testcase_05 AC 551 ms
40,236 KB
testcase_06 AC 552 ms
40,232 KB
testcase_07 AC 415 ms
33,212 KB
testcase_08 AC 397 ms
40,432 KB
testcase_09 AC 377 ms
39,512 KB
testcase_10 AC 381 ms
40,464 KB
testcase_11 AC 382 ms
40,332 KB
testcase_12 AC 398 ms
40,432 KB
testcase_13 AC 408 ms
40,432 KB
testcase_14 AC 402 ms
40,428 KB
testcase_15 AC 414 ms
40,152 KB
testcase_16 AC 422 ms
40,544 KB
testcase_17 AC 423 ms
40,548 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 31 ms
10,752 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 30 ms
10,880 KB
testcase_29 AC 32 ms
10,752 KB
testcase_30 AC 31 ms
10,752 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 31 ms
10,752 KB
testcase_34 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from heapq import heapify,heappop,heappush

def main():
    n = int(input())
    a = list(map(int,input().split()))
    a.sort()
    cuml = [0] * (n + 1)
    cumr = [0] * (n + 1)
    for i in range(n):
        cuml[i + 1] = cuml[i] + a[i]
    for i in range(n - 1,-1,-1):
        cumr[i] = cumr[i + 1] + a[i]
    
    ans = -INF
    for i in range(n//2):
        ans = max(ans,cuml[i + 1] + cumr[n - i] - a[i]*(2*i + 1))
    for i in range(n//2,n):
        ans = max(ans,cumr[2*i - n + 1] - a[i]*(2*n - 2*i - 1))
    
    for i in range(1,(n + 1)//2):
        ans = max(ans,cuml[i + 1] + cumr[n - i + 1] - (a[i] + a[i - 1])*i)
    for i in range((n + 1)//2,n):
        ans = max(ans,cumr[2*i - n] - (a[i] + a[i - 1])*(n - i))
    print(ans)
if __name__=='__main__':
    main()
0