結果

問題 No.609 Noelちゃんと星々
ユーザー konabekonabe
提出日時 2017-12-11 23:50:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,496 KB
最終ジャッジ日時 2024-11-30 21:13:27
合計ジャッジ時間 3,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
21,648 KB
testcase_01 AC 79 ms
17,864 KB
testcase_02 AC 70 ms
16,628 KB
testcase_03 AC 75 ms
17,788 KB
testcase_04 AC 63 ms
15,488 KB
testcase_05 AC 122 ms
23,568 KB
testcase_06 AC 113 ms
22,260 KB
testcase_07 AC 84 ms
18,792 KB
testcase_08 AC 55 ms
14,592 KB
testcase_09 AC 71 ms
16,784 KB
testcase_10 AC 95 ms
19,864 KB
testcase_11 AC 92 ms
19,316 KB
testcase_12 AC 102 ms
20,976 KB
testcase_13 AC 59 ms
15,104 KB
testcase_14 AC 54 ms
14,336 KB
testcase_15 AC 113 ms
22,412 KB
testcase_16 AC 125 ms
24,040 KB
testcase_17 AC 107 ms
21,660 KB
testcase_18 AC 69 ms
16,588 KB
testcase_19 AC 111 ms
22,136 KB
testcase_20 AC 133 ms
24,496 KB
testcase_21 AC 132 ms
24,492 KB
testcase_22 AC 129 ms
24,236 KB
testcase_23 AC 131 ms
24,496 KB
testcase_24 AC 128 ms
24,372 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