結果

問題 No.609 Noelちゃんと星々
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-12-17 14:55:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,392 KB
最終ジャッジ日時 2024-05-09 10:17:49
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
21,932 KB
testcase_01 AC 73 ms
17,632 KB
testcase_02 AC 68 ms
16,136 KB
testcase_03 AC 71 ms
17,168 KB
testcase_04 AC 60 ms
15,104 KB
testcase_05 AC 115 ms
23,596 KB
testcase_06 AC 105 ms
22,288 KB
testcase_07 AC 81 ms
18,816 KB
testcase_08 AC 54 ms
14,464 KB
testcase_09 AC 66 ms
16,812 KB
testcase_10 AC 86 ms
19,892 KB
testcase_11 AC 85 ms
19,468 KB
testcase_12 AC 96 ms
21,136 KB
testcase_13 AC 60 ms
14,592 KB
testcase_14 AC 52 ms
14,208 KB
testcase_15 AC 101 ms
22,560 KB
testcase_16 AC 112 ms
24,192 KB
testcase_17 AC 97 ms
21,820 KB
testcase_18 AC 62 ms
16,228 KB
testcase_19 AC 102 ms
22,420 KB
testcase_20 AC 113 ms
24,388 KB
testcase_21 AC 119 ms
24,388 KB
testcase_22 AC 116 ms
24,388 KB
testcase_23 AC 121 ms
24,392 KB
testcase_24 AC 119 ms
24,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3


import statistics


def compute_min_sum_delta(n, ys):
    m = statistics.median(ys)
    return round(sum(abs(y - m) for y in ys))


def main():
    n = int(input())
    ys = [int(y) for y in input().split()]
    print(compute_min_sum_delta(n, ys))


if __name__ == '__main__':
    main()
0