結果

問題 No.609 Noelちゃんと星々
ユーザー GrayCoderGrayCoder
提出日時 2017-12-09 20:55:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,968 KB
最終ジャッジ日時 2024-05-07 12:41:26
合計ジャッジ時間 3,610 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
22,132 KB
testcase_01 AC 66 ms
16,504 KB
testcase_02 AC 53 ms
15,820 KB
testcase_03 AC 66 ms
16,780 KB
testcase_04 AC 45 ms
14,028 KB
testcase_05 AC 128 ms
26,832 KB
testcase_06 AC 111 ms
23,004 KB
testcase_07 AC 78 ms
19,128 KB
testcase_08 AC 37 ms
12,288 KB
testcase_09 AC 60 ms
16,352 KB
testcase_10 AC 94 ms
20,624 KB
testcase_11 AC 86 ms
19,812 KB
testcase_12 AC 104 ms
21,652 KB
testcase_13 AC 39 ms
13,056 KB
testcase_14 AC 31 ms
11,520 KB
testcase_15 AC 114 ms
23,048 KB
testcase_16 AC 136 ms
27,232 KB
testcase_17 AC 114 ms
22,168 KB
testcase_18 AC 58 ms
15,892 KB
testcase_19 AC 118 ms
23,004 KB
testcase_20 AC 135 ms
27,840 KB
testcase_21 AC 134 ms
27,844 KB
testcase_22 AC 138 ms
27,780 KB
testcase_23 AC 138 ms
27,968 KB
testcase_24 AC 135 ms
27,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

    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