結果

問題 No.609 Noelちゃんと星々
ユーザー mlihua09mlihua09
提出日時 2020-09-20 18:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 105,308 KB
最終ジャッジ日時 2024-06-24 10:52:10
合計ジャッジ時間 6,740 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
100,752 KB
testcase_01 AC 167 ms
93,160 KB
testcase_02 AC 160 ms
90,956 KB
testcase_03 AC 162 ms
92,200 KB
testcase_04 AC 159 ms
88,836 KB
testcase_05 AC 192 ms
105,284 KB
testcase_06 AC 185 ms
101,668 KB
testcase_07 AC 173 ms
95,232 KB
testcase_08 AC 155 ms
88,604 KB
testcase_09 AC 161 ms
91,800 KB
testcase_10 AC 173 ms
97,872 KB
testcase_11 AC 172 ms
96,884 KB
testcase_12 AC 181 ms
99,664 KB
testcase_13 AC 156 ms
88,792 KB
testcase_14 AC 153 ms
89,048 KB
testcase_15 AC 185 ms
102,424 KB
testcase_16 AC 190 ms
105,068 KB
testcase_17 AC 183 ms
101,128 KB
testcase_18 AC 163 ms
90,592 KB
testcase_19 AC 184 ms
101,288 KB
testcase_20 AC 193 ms
105,268 KB
testcase_21 AC 192 ms
104,884 KB
testcase_22 AC 194 ms
105,148 KB
testcase_23 AC 195 ms
105,308 KB
testcase_24 AC 192 ms
105,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import statistics

n = int(input())

Y = list(map(int, input().split()))

m = statistics.median_low(Y)

print(sum([abs(y - m) for y in Y]))
0