結果

問題 No.609 Noelちゃんと星々
ユーザー KozumaKozuma
提出日時 2018-01-17 23:20:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,732 KB
最終ジャッジ日時 2024-12-24 10:55:21
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
18,688 KB
testcase_01 AC 64 ms
14,556 KB
testcase_02 AC 52 ms
13,360 KB
testcase_03 AC 60 ms
14,340 KB
testcase_04 AC 46 ms
12,240 KB
testcase_05 AC 119 ms
20,928 KB
testcase_06 AC 107 ms
19,452 KB
testcase_07 AC 73 ms
15,632 KB
testcase_08 AC 39 ms
11,392 KB
testcase_09 AC 58 ms
13,784 KB
testcase_10 AC 87 ms
16,996 KB
testcase_11 AC 83 ms
16,440 KB
testcase_12 AC 94 ms
18,144 KB
testcase_13 AC 41 ms
11,900 KB
testcase_14 AC 36 ms
11,008 KB
testcase_15 AC 107 ms
19,412 KB
testcase_16 AC 119 ms
21,168 KB
testcase_17 AC 102 ms
18,796 KB
testcase_18 AC 53 ms
13,196 KB
testcase_19 AC 106 ms
19,576 KB
testcase_20 AC 124 ms
21,600 KB
testcase_21 AC 124 ms
21,732 KB
testcase_22 AC 126 ms
21,472 KB
testcase_23 AC 131 ms
21,732 KB
testcase_24 AC 127 ms
21,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int, input().split()))

Y.sort()

sum = 0
if N % 2 != 0:
	center = Y[int(N / 2)]
else:
	center = int((Y[int(N / 2) - 1] + Y[int(N / 2)]) / 2)
	

for i in Y:
		sum += abs(i - center)

print(sum)
	
0