結果

問題 No.609 Noelちゃんと星々
ユーザー 1_7201_720
提出日時 2019-08-19 22:11:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-10-05 06:32:16
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
18,904 KB
testcase_01 AC 56 ms
14,848 KB
testcase_02 AC 44 ms
13,484 KB
testcase_03 AC 50 ms
14,644 KB
testcase_04 AC 38 ms
12,492 KB
testcase_05 AC 101 ms
20,700 KB
testcase_06 AC 90 ms
19,392 KB
testcase_07 AC 61 ms
15,788 KB
testcase_08 AC 35 ms
11,648 KB
testcase_09 AC 48 ms
14,032 KB
testcase_10 AC 69 ms
17,120 KB
testcase_11 AC 67 ms
16,432 KB
testcase_12 AC 78 ms
18,240 KB
testcase_13 AC 35 ms
12,032 KB
testcase_14 AC 28 ms
11,264 KB
testcase_15 AC 90 ms
19,536 KB
testcase_16 AC 99 ms
21,300 KB
testcase_17 AC 83 ms
18,916 KB
testcase_18 AC 45 ms
13,448 KB
testcase_19 AC 87 ms
19,388 KB
testcase_20 AC 106 ms
21,588 KB
testcase_21 AC 102 ms
21,500 KB
testcase_22 AC 105 ms
21,368 KB
testcase_23 AC 106 ms
21,632 KB
testcase_24 AC 103 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
y = sorted(list(map(int, input().split())))

i = n // 2
ans = 0

for x in y:
  ans += abs(x-y[i])

print(ans)
0