結果

問題 No.609 Noelちゃんと星々
ユーザー ysys
提出日時 2018-01-22 18:50:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,500 KB
最終ジャッジ日時 2024-06-07 17:24:31
合計ジャッジ時間 4,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
18,908 KB
testcase_01 AC 56 ms
14,724 KB
testcase_02 AC 45 ms
13,612 KB
testcase_03 AC 52 ms
14,648 KB
testcase_04 AC 41 ms
12,544 KB
testcase_05 AC 104 ms
20,828 KB
testcase_06 AC 95 ms
19,520 KB
testcase_07 AC 65 ms
15,784 KB
testcase_08 AC 34 ms
11,776 KB
testcase_09 AC 53 ms
14,036 KB
testcase_10 AC 80 ms
17,116 KB
testcase_11 AC 75 ms
16,564 KB
testcase_12 AC 86 ms
18,240 KB
testcase_13 AC 37 ms
12,028 KB
testcase_14 AC 32 ms
11,136 KB
testcase_15 AC 98 ms
19,668 KB
testcase_16 AC 109 ms
21,040 KB
testcase_17 AC 91 ms
18,920 KB
testcase_18 AC 50 ms
13,324 KB
testcase_19 AC 96 ms
19,396 KB
testcase_20 AC 109 ms
21,368 KB
testcase_21 AC 108 ms
21,496 KB
testcase_22 AC 114 ms
21,496 KB
testcase_23 AC 114 ms
21,500 KB
testcase_24 AC 110 ms
21,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
y = list(map(int, input().split()))
y = sorted(y)
mid = y[N // 2]
num = 0
for k in y:
    num += abs(k - mid)
print(num)
0