結果

問題 No.609 Noelちゃんと星々
ユーザー GrayCoder
提出日時 2017-12-09 11:04:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 481 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 36,556 KB
最終ジャッジ日時 2024-11-30 02:13:47
合計ジャッジ時間 79,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other TLE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

    if N == 1:
        print(Y[0])
        return
    elif N == 2:
        print(max(Y) - min(Y))
        return
    else:
        c = Counter(Y)
        dist = float('inf')
        for i, j in c.items():
            ref = i
            n = 0
            for k, l in c.items():
                n += abs(ref - k) * l
            dist = min(dist, n)

    print(dist)

main()
0