結果

問題 No.609 Noelちゃんと星々
ユーザー KozumaKozuma
提出日時 2018-01-17 23:20:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-06-06 17:57:25
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
18,908 KB
testcase_01 AC 55 ms
14,752 KB
testcase_02 AC 47 ms
13,360 KB
testcase_03 AC 54 ms
14,592 KB
testcase_04 AC 42 ms
12,364 KB
testcase_05 AC 108 ms
20,704 KB
testcase_06 AC 90 ms
19,580 KB
testcase_07 AC 64 ms
15,892 KB
testcase_08 AC 34 ms
11,520 KB
testcase_09 AC 48 ms
13,784 KB
testcase_10 AC 72 ms
16,996 KB
testcase_11 AC 73 ms
16,568 KB
testcase_12 AC 83 ms
18,404 KB
testcase_13 AC 38 ms
12,160 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 AC 92 ms
19,668 KB
testcase_16 AC 110 ms
21,044 KB
testcase_17 AC 90 ms
18,796 KB
testcase_18 AC 46 ms
13,204 KB
testcase_19 AC 91 ms
19,452 KB
testcase_20 AC 107 ms
21,604 KB
testcase_21 AC 107 ms
21,604 KB
testcase_22 AC 109 ms
21,604 KB
testcase_23 AC 110 ms
21,736 KB
testcase_24 AC 109 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