結果

問題 No.837 Noelちゃんと星々2
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-11 15:51:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,900 KB
最終ジャッジ日時 2024-06-11 14:30:06
合計ジャッジ時間 6,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
31,836 KB
testcase_01 AC 407 ms
31,832 KB
testcase_02 AC 405 ms
31,840 KB
testcase_03 AC 409 ms
31,836 KB
testcase_04 AC 394 ms
31,836 KB
testcase_05 AC 399 ms
31,900 KB
testcase_06 AC 408 ms
31,888 KB
testcase_07 AC 397 ms
31,896 KB
testcase_08 AC 388 ms
31,840 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 32 ms
10,624 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 32 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,624 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N = int(input())
Y = list(map(int, input().split()))
if len(set(Y)) == 1:
    print(1)
    exit()

Y.sort()

Z = [0] + list(accumulate(Y))
left = [0] * N
for i in range(1, N + 1):
    m = (i + 1) // 2
    median = Y[m - 1]
    d = median * (m - 1) - Z[m - 1]
    d += (Z[i] - Z[m]) - (i - m) * median
    left[i - 1] = d

Y.reverse()
Z = [0] + list(accumulate(Y))
right = [0] * N
for i in range(1, N + 1):
    m = (i + 1) // 2
    median = Y[m - 1]
    d = Z[m - 1] - median * (m - 1)
    d += (i - m) * median - (Z[i] - Z[m])
    right[i - 1] = d
right.reverse()

ans = min(a + b for a, b in zip(left[:-1], right[1:]))
print(ans)
0