結果

問題 No.837 Noelちゃんと星々2
ユーザー maspymaspy
提出日時 2020-02-02 13:22:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,940 KB
最終ジャッジ日時 2024-06-11 14:27:51
合計ジャッジ時間 3,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
31,824 KB
testcase_01 AC 223 ms
31,820 KB
testcase_02 AC 213 ms
31,828 KB
testcase_03 AC 207 ms
31,708 KB
testcase_04 AC 210 ms
31,840 KB
testcase_05 AC 221 ms
31,824 KB
testcase_06 AC 214 ms
31,804 KB
testcase_07 AC 211 ms
31,940 KB
testcase_08 AC 211 ms
31,936 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,624 KB
testcase_26 AC 27 ms
10,624 KB
testcase_27 AC 27 ms
10,624 KB
testcase_28 AC 27 ms
10,496 KB
testcase_29 AC 26 ms
10,752 KB
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 27 ms
10,496 KB
testcase_32 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from collections import deque

N,*Y = map(int,read().split())

Y.sort()

if Y[0] == Y[-1]:
    print(1)
    exit()

def calc_left_sum(Y):
    n_left = 0
    right = deque()
    s_l = 0
    s_r = 0
    ret = [10 ** 18]
    for y in Y:
        right.append(y)
        s_r += y
        if n_left + 1 < len(right):
            n_left += 1
            x = right.popleft()
            s_l += x
            s_r -= x
        mid = right[0]
        D = (mid * n_left - s_l)
        D += (s_r - mid * len(right))
        ret.append(D)
    return ret

L = calc_left_sum(Y)
R = calc_left_sum([-y for y in Y[::-1]])

answer = min(x+y for x,y in zip(L[1:N], R[1:N][::-1]))
print(answer)
0