結果

問題 No.609 Noelちゃんと星々
ユーザー pluto77pluto77
提出日時 2017-12-09 09:49:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,376 KB
最終ジャッジ日時 2024-11-30 02:10:44
合計ジャッジ時間 4,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
21,652 KB
testcase_01 AC 94 ms
17,608 KB
testcase_02 AC 79 ms
16,364 KB
testcase_03 AC 87 ms
17,276 KB
testcase_04 AC 70 ms
15,232 KB
testcase_05 AC 156 ms
23,832 KB
testcase_06 AC 141 ms
22,268 KB
testcase_07 AC 101 ms
18,672 KB
testcase_08 AC 61 ms
14,336 KB
testcase_09 AC 83 ms
16,792 KB
testcase_10 AC 116 ms
19,748 KB
testcase_11 AC 109 ms
19,320 KB
testcase_12 AC 124 ms
20,988 KB
testcase_13 AC 64 ms
14,848 KB
testcase_14 AC 56 ms
13,824 KB
testcase_15 AC 142 ms
22,408 KB
testcase_16 AC 154 ms
24,048 KB
testcase_17 AC 132 ms
21,668 KB
testcase_18 AC 77 ms
16,200 KB
testcase_19 AC 141 ms
22,264 KB
testcase_20 AC 161 ms
24,368 KB
testcase_21 AC 161 ms
24,372 KB
testcase_22 AC 165 ms
24,368 KB
testcase_23 AC 164 ms
24,376 KB
testcase_24 AC 162 ms
24,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_609
from statistics import median

n=int(input())
y=list(map(int,input().split()))
med=median(y)
res=0
for i in range(n):
 res+=abs(y[i]-int(med))
print(res)
0