結果

問題 No.609 Noelちゃんと星々
ユーザー ysys
提出日時 2018-01-22 18:50:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,552 KB
最終ジャッジ日時 2024-12-26 00:55:58
合計ジャッジ時間 4,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
18,908 KB
testcase_01 AC 65 ms
14,596 KB
testcase_02 AC 49 ms
13,484 KB
testcase_03 AC 57 ms
14,648 KB
testcase_04 AC 41 ms
12,544 KB
testcase_05 AC 114 ms
20,828 KB
testcase_06 AC 101 ms
19,268 KB
testcase_07 AC 69 ms
15,780 KB
testcase_08 AC 38 ms
11,648 KB
testcase_09 AC 56 ms
14,032 KB
testcase_10 AC 91 ms
17,116 KB
testcase_11 AC 85 ms
16,688 KB
testcase_12 AC 97 ms
18,236 KB
testcase_13 AC 41 ms
12,156 KB
testcase_14 AC 35 ms
11,264 KB
testcase_15 AC 103 ms
19,796 KB
testcase_16 AC 125 ms
21,292 KB
testcase_17 AC 102 ms
18,924 KB
testcase_18 AC 54 ms
13,576 KB
testcase_19 AC 102 ms
19,392 KB
testcase_20 AC 126 ms
21,500 KB
testcase_21 AC 117 ms
21,552 KB
testcase_22 AC 121 ms
21,504 KB
testcase_23 AC 121 ms
21,500 KB
testcase_24 AC 122 ms
21,500 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