結果

問題 No.972 選び方のスコア
ユーザー hedwig100hedwig100
提出日時 2020-04-26 13:10:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,442 ms / 2,000 ms
コード長 826 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-11-17 02:00:57
合計ジャッジ時間 34,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,404 ms
40,448 KB
testcase_01 AC 1,362 ms
40,852 KB
testcase_02 AC 1,309 ms
38,964 KB
testcase_03 AC 634 ms
25,432 KB
testcase_04 AC 1,380 ms
40,292 KB
testcase_05 AC 1,365 ms
40,184 KB
testcase_06 AC 1,399 ms
40,424 KB
testcase_07 AC 1,019 ms
33,032 KB
testcase_08 AC 1,253 ms
40,652 KB
testcase_09 AC 1,163 ms
39,572 KB
testcase_10 AC 1,058 ms
40,696 KB
testcase_11 AC 1,059 ms
40,268 KB
testcase_12 AC 1,116 ms
40,504 KB
testcase_13 AC 1,276 ms
40,504 KB
testcase_14 AC 1,122 ms
40,504 KB
testcase_15 AC 1,321 ms
40,088 KB
testcase_16 AC 1,351 ms
40,464 KB
testcase_17 AC 1,309 ms
40,492 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 1,398 ms
40,372 KB
testcase_20 AC 1,442 ms
40,392 KB
testcase_21 AC 1,409 ms
40,372 KB
testcase_22 AC 1,405 ms
38,856 KB
testcase_23 AC 1,412 ms
41,752 KB
testcase_24 AC 1,404 ms
41,760 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 27 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 28 ms
10,624 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 28 ms
10,624 KB
testcase_32 AC 28 ms
10,752 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 29 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)

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):
        max_len = min(i,n - i - 1)
        r = max_len + 1
        l = 0
        while r - l > 1:
            mid = (r + l)//2
            if a[i - mid] + a[n - mid] > 2*a[i]:
                l = mid
            else:
                r = mid
        ans = max(ans,cuml[i + 1] - cuml[i - l] + cumr[n - l] - a[i]*(2*l + 1))
    
    print(ans)
if __name__=='__main__':
    main()
0