結果

問題 No.972 選び方のスコア
ユーザー NoneNone
提出日時 2021-03-25 21:54:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 673 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 210,936 KB
最終ジャッジ日時 2024-11-27 07:15:18
合計ジャッジ時間 78,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 38 ms
59,516 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 39 ms
52,364 KB
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 38 ms
51,956 KB
testcase_28 AC 39 ms
52,088 KB
testcase_29 AC 38 ms
53,156 KB
testcase_30 AC 39 ms
52,952 KB
testcase_31 AC 38 ms
53,492 KB
testcase_32 AC 39 ms
52,156 KB
testcase_33 AC 45 ms
59,648 KB
testcase_34 AC 42 ms
210,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search_int(ok, ng, test):
    """
    :param ok: solve(x) = True を必ず満たす点
    :param ng: solve(x) = False を必ず満たす点
    """
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if test(mid):
            ok = mid
        else:
            ng = mid
    return ok

##############################################################
import sys
input = sys.stdin.readline

def test(x):
    return A[i-x]+A[-1-x]-m>=0

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

res=0
for i in range(N):
    m=A[i]
    k=binary_search_int(0,min(i+1,N-1-i),test)
    S=sum(A[i-k:i+1])+sum(A[N-k:])-m*(2*k+1)
    res=max(res,S)
print(res)
0