結果

問題 No.609 Noelちゃんと星々
ユーザー RyutoRyuto
提出日時 2017-12-11 13:15:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,376 KB
最終ジャッジ日時 2024-11-30 11:38:19
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
21,652 KB
testcase_01 AC 78 ms
17,740 KB
testcase_02 AC 66 ms
16,628 KB
testcase_03 AC 74 ms
17,920 KB
testcase_04 AC 60 ms
15,488 KB
testcase_05 AC 121 ms
23,688 KB
testcase_06 AC 112 ms
22,140 KB
testcase_07 AC 87 ms
18,676 KB
testcase_08 AC 54 ms
14,464 KB
testcase_09 AC 71 ms
16,804 KB
testcase_10 AC 95 ms
20,004 KB
testcase_11 AC 91 ms
19,324 KB
testcase_12 AC 104 ms
20,992 KB
testcase_13 AC 58 ms
15,104 KB
testcase_14 AC 51 ms
14,080 KB
testcase_15 AC 114 ms
22,540 KB
testcase_16 AC 125 ms
23,908 KB
testcase_17 AC 109 ms
21,680 KB
testcase_18 AC 66 ms
16,600 KB
testcase_19 AC 112 ms
22,140 KB
testcase_20 AC 129 ms
24,240 KB
testcase_21 AC 126 ms
24,240 KB
testcase_22 AC 130 ms
24,372 KB
testcase_23 AC 132 ms
24,376 KB
testcase_24 AC 127 ms
24,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

import statistics

n = int(input().strip())
indat = [int(x) for x in input().split()]

median = statistics.median(indat)
median = round(median)
diff = [abs(median - x) for x in indat]

print(sum(diff))
0