結果

問題 No.609 Noelちゃんと星々
ユーザー neterukunneterukun
提出日時 2019-05-06 03:56:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,772 KB
最終ジャッジ日時 2024-06-26 11:14:41
合計ジャッジ時間 3,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
19,044 KB
testcase_01 AC 64 ms
14,860 KB
testcase_02 AC 53 ms
13,492 KB
testcase_03 AC 60 ms
14,912 KB
testcase_04 AC 43 ms
12,624 KB
testcase_05 AC 113 ms
20,844 KB
testcase_06 AC 103 ms
19,536 KB
testcase_07 AC 70 ms
15,800 KB
testcase_08 AC 36 ms
11,776 KB
testcase_09 AC 53 ms
14,172 KB
testcase_10 AC 80 ms
17,128 KB
testcase_11 AC 80 ms
16,836 KB
testcase_12 AC 91 ms
18,384 KB
testcase_13 AC 40 ms
12,160 KB
testcase_14 AC 32 ms
11,264 KB
testcase_15 AC 100 ms
19,680 KB
testcase_16 AC 120 ms
21,436 KB
testcase_17 AC 97 ms
19,188 KB
testcase_18 AC 51 ms
13,592 KB
testcase_19 AC 100 ms
19,536 KB
testcase_20 AC 118 ms
21,640 KB
testcase_21 AC 117 ms
21,640 KB
testcase_22 AC 122 ms
21,636 KB
testcase_23 AC 117 ms
21,772 KB
testcase_24 AC 117 ms
21,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

a = sorted(a)
if n % 2 == 0:
    median = (a[n//2 - 1] + a[n//2]) / 2
else:
    median = a[n//2]

ans = 0
for i in range(n):
    ans += abs(a[i] - median)

print(int(ans))
0