結果

問題 No.609 Noelちゃんと星々
ユーザー UmemiyaUmemiya
提出日時 2018-01-01 20:29:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,368 KB
最終ジャッジ日時 2024-06-02 05:47:25
合計ジャッジ時間 4,174 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
21,648 KB
testcase_01 AC 70 ms
17,992 KB
testcase_02 AC 61 ms
16,620 KB
testcase_03 AC 68 ms
17,920 KB
testcase_04 AC 56 ms
15,616 KB
testcase_05 AC 109 ms
23,568 KB
testcase_06 AC 101 ms
22,260 KB
testcase_07 AC 76 ms
18,540 KB
testcase_08 AC 51 ms
14,464 KB
testcase_09 AC 65 ms
16,972 KB
testcase_10 AC 87 ms
19,992 KB
testcase_11 AC 80 ms
19,316 KB
testcase_12 AC 89 ms
20,976 KB
testcase_13 AC 53 ms
15,104 KB
testcase_14 AC 48 ms
14,080 KB
testcase_15 AC 104 ms
22,540 KB
testcase_16 AC 106 ms
24,040 KB
testcase_17 AC 93 ms
21,660 KB
testcase_18 AC 58 ms
16,844 KB
testcase_19 AC 97 ms
22,136 KB
testcase_20 AC 115 ms
24,276 KB
testcase_21 AC 111 ms
24,240 KB
testcase_22 AC 110 ms
24,240 KB
testcase_23 AC 113 ms
24,368 KB
testcase_24 AC 116 ms
24,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from statistics import median
N = int(input())
Y = list(map(int, input().split()))
P = median(Y)
print(int(sum([abs(y - P) for y in Y])))
0