結果

問題 No.609 Noelちゃんと星々
ユーザー daku9640daku9640
提出日時 2018-08-12 01:30:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,872 KB
最終ジャッジ日時 2024-09-23 06:40:31
合計ジャッジ時間 2,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
18,920 KB
testcase_01 AC 61 ms
14,816 KB
testcase_02 AC 48 ms
14,016 KB
testcase_03 AC 53 ms
14,732 KB
testcase_04 AC 42 ms
13,008 KB
testcase_05 AC 99 ms
20,848 KB
testcase_06 AC 87 ms
19,584 KB
testcase_07 AC 62 ms
15,896 KB
testcase_08 AC 36 ms
11,776 KB
testcase_09 AC 51 ms
14,300 KB
testcase_10 AC 72 ms
17,136 KB
testcase_11 AC 68 ms
16,580 KB
testcase_12 AC 79 ms
18,408 KB
testcase_13 AC 38 ms
12,032 KB
testcase_14 AC 33 ms
11,392 KB
testcase_15 AC 89 ms
19,680 KB
testcase_16 AC 101 ms
21,308 KB
testcase_17 AC 85 ms
18,932 KB
testcase_18 AC 48 ms
14,104 KB
testcase_19 AC 84 ms
19,584 KB
testcase_20 AC 100 ms
21,744 KB
testcase_21 AC 101 ms
21,868 KB
testcase_22 AC 98 ms
21,740 KB
testcase_23 AC 99 ms
21,872 KB
testcase_24 AC 99 ms
21,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect, insort_left, insort
from itertools import accumulate
n = int(input())
y = sorted(map(int, input().split()))
sum_y = tuple(accumulate(y))
med = y[n//2]
l = bisect_left(y, med)
print(abs(sum_y[l - 1] - med * l) + abs((sum_y[-1] - sum_y[l - 1]) - med * (n - l)))
0