結果

問題 No.609 Noelちゃんと星々
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-12-06 22:45:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,636 KB
最終ジャッジ日時 2024-09-17 13:21:03
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
18,916 KB
testcase_01 AC 50 ms
14,724 KB
testcase_02 AC 43 ms
13,484 KB
testcase_03 AC 46 ms
14,648 KB
testcase_04 AC 34 ms
12,544 KB
testcase_05 AC 85 ms
20,832 KB
testcase_06 AC 75 ms
19,400 KB
testcase_07 AC 55 ms
15,792 KB
testcase_08 AC 30 ms
11,776 KB
testcase_09 AC 42 ms
14,036 KB
testcase_10 AC 58 ms
17,124 KB
testcase_11 AC 57 ms
16,572 KB
testcase_12 AC 66 ms
18,244 KB
testcase_13 AC 31 ms
12,032 KB
testcase_14 AC 27 ms
11,136 KB
testcase_15 AC 75 ms
19,672 KB
testcase_16 AC 83 ms
21,168 KB
testcase_17 AC 73 ms
18,800 KB
testcase_18 AC 40 ms
13,476 KB
testcase_19 AC 75 ms
19,524 KB
testcase_20 AC 87 ms
21,628 KB
testcase_21 AC 86 ms
21,504 KB
testcase_22 AC 86 ms
21,500 KB
testcase_23 AC 90 ms
21,632 KB
testcase_24 AC 87 ms
21,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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