結果

問題 No.609 Noelちゃんと星々
ユーザー GrayCoderGrayCoder
提出日時 2017-12-09 20:52:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,864 KB
最終ジャッジ日時 2024-11-30 05:29:42
合計ジャッジ時間 3,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
22,028 KB
testcase_01 AC 72 ms
16,532 KB
testcase_02 AC 59 ms
15,832 KB
testcase_03 AC 69 ms
16,176 KB
testcase_04 AC 50 ms
13,920 KB
testcase_05 AC 143 ms
26,792 KB
testcase_06 AC 126 ms
23,020 KB
testcase_07 AC 85 ms
19,044 KB
testcase_08 AC 40 ms
12,160 KB
testcase_09 AC 63 ms
16,240 KB
testcase_10 AC 100 ms
20,636 KB
testcase_11 AC 95 ms
19,604 KB
testcase_12 AC 113 ms
21,668 KB
testcase_13 AC 43 ms
13,056 KB
testcase_14 AC 35 ms
11,520 KB
testcase_15 AC 128 ms
23,012 KB
testcase_16 AC 147 ms
27,180 KB
testcase_17 AC 121 ms
22,176 KB
testcase_18 AC 60 ms
15,780 KB
testcase_19 AC 128 ms
22,980 KB
testcase_20 AC 152 ms
27,740 KB
testcase_21 AC 150 ms
27,860 KB
testcase_22 AC 150 ms
27,864 KB
testcase_23 AC 155 ms
27,748 KB
testcase_24 AC 155 ms
27,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from bisect import bisect

def main():
    N = int(input())
    Y = tuple(map(int, input().split()))

    if N == 1:
        print(0)
        return

    c = Counter(Y).most_common()
    y = sorted(Y)
    idx = N // 2
    dist = float('inf')
    for i in (c[0][0], y[idx]):
        n = 0
        for j in y:
            n += abs(i - j)
        dist = min(dist, n)

    print(dist)

main()
0