結果

問題 No.609 Noelちゃんと星々
ユーザー htkbhtkb
提出日時 2018-04-21 08:51:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,844 KB
最終ジャッジ日時 2024-06-27 05:22:38
合計ジャッジ時間 3,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
18,900 KB
testcase_01 AC 61 ms
14,716 KB
testcase_02 AC 47 ms
13,472 KB
testcase_03 AC 53 ms
14,448 KB
testcase_04 AC 40 ms
12,416 KB
testcase_05 AC 101 ms
20,828 KB
testcase_06 AC 86 ms
19,592 KB
testcase_07 AC 62 ms
16,128 KB
testcase_08 AC 36 ms
11,776 KB
testcase_09 AC 51 ms
13,904 KB
testcase_10 AC 72 ms
17,228 KB
testcase_11 AC 68 ms
16,680 KB
testcase_12 AC 80 ms
18,376 KB
testcase_13 AC 37 ms
12,160 KB
testcase_14 AC 33 ms
11,136 KB
testcase_15 AC 91 ms
19,660 KB
testcase_16 AC 103 ms
21,416 KB
testcase_17 AC 85 ms
18,912 KB
testcase_18 AC 47 ms
13,308 KB
testcase_19 AC 88 ms
19,560 KB
testcase_20 AC 102 ms
21,708 KB
testcase_21 AC 101 ms
21,736 KB
testcase_22 AC 101 ms
21,840 KB
testcase_23 AC 103 ms
21,844 KB
testcase_24 AC 102 ms
21,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = sorted(map(int, input().split()))
med = a[n//2]
print(sum(abs(med-m) for m in a))
0