結果

問題 No.609 Noelちゃんと星々
ユーザー Naoyk1212Naoyk1212
提出日時 2017-12-14 18:26:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,368 KB
最終ジャッジ日時 2024-05-08 10:08:12
合計ジャッジ時間 4,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
21,772 KB
testcase_01 AC 90 ms
17,472 KB
testcase_02 AC 77 ms
16,236 KB
testcase_03 AC 87 ms
17,148 KB
testcase_04 AC 69 ms
15,228 KB
testcase_05 AC 143 ms
23,696 KB
testcase_06 AC 130 ms
22,388 KB
testcase_07 AC 98 ms
18,668 KB
testcase_08 AC 62 ms
14,592 KB
testcase_09 AC 82 ms
16,788 KB
testcase_10 AC 109 ms
19,992 KB
testcase_11 AC 107 ms
19,312 KB
testcase_12 AC 121 ms
20,984 KB
testcase_13 AC 67 ms
14,720 KB
testcase_14 AC 58 ms
14,080 KB
testcase_15 AC 132 ms
22,528 KB
testcase_16 AC 145 ms
24,040 KB
testcase_17 AC 124 ms
21,668 KB
testcase_18 AC 75 ms
16,072 KB
testcase_19 AC 130 ms
22,132 KB
testcase_20 AC 151 ms
24,364 KB
testcase_21 AC 148 ms
24,368 KB
testcase_22 AC 148 ms
24,364 KB
testcase_23 AC 146 ms
24,240 KB
testcase_24 AC 149 ms
24,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from statistics import median

N = int(input())
Y = [int(x) for x in input().split()]

med = int(median(Y))

ans = 0
for i in Y:
    ans += abs(med - i)

print(ans)
0