結果

問題 No.609 Noelちゃんと星々
ユーザー kichirb3kichirb3
提出日時 2018-03-24 01:58:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,392 KB
最終ジャッジ日時 2024-06-25 02:37:51
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
21,796 KB
testcase_01 AC 80 ms
17,924 KB
testcase_02 AC 69 ms
16,388 KB
testcase_03 AC 76 ms
17,632 KB
testcase_04 AC 64 ms
15,488 KB
testcase_05 AC 122 ms
23,592 KB
testcase_06 AC 112 ms
22,152 KB
testcase_07 AC 87 ms
18,676 KB
testcase_08 AC 57 ms
14,336 KB
testcase_09 AC 72 ms
16,600 KB
testcase_10 AC 94 ms
20,012 KB
testcase_11 AC 91 ms
19,460 KB
testcase_12 AC 101 ms
21,004 KB
testcase_13 AC 59 ms
15,232 KB
testcase_14 AC 54 ms
14,080 KB
testcase_15 AC 112 ms
22,300 KB
testcase_16 AC 124 ms
24,052 KB
testcase_17 AC 106 ms
21,808 KB
testcase_18 AC 69 ms
16,480 KB
testcase_19 AC 111 ms
22,156 KB
testcase_20 AC 127 ms
24,392 KB
testcase_21 AC 126 ms
24,260 KB
testcase_22 AC 129 ms
24,384 KB
testcase_23 AC 128 ms
24,260 KB
testcase_24 AC 128 ms
24,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.609 Noelちゃんと星々
https://yukicoder.me/problems/no/609

"""
import sys
from sys import stdin
from statistics import median
input = stdin.readline


def solve(stars):
    stars.sort()
    m = int(median(stars))
    res = [abs(x - m) for x in stars]
    return sum(res)


def main(args):
    _ = input()
    stars = [int(x) for x in input().split()]
    ans = solve(stars)
    print(ans)


if __name__ == '__main__':
    main(sys.argv[1:])
0