結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 68 ms
14,676 KB
testcase_02 AC 55 ms
13,356 KB
testcase_03 WA -
testcase_04 AC 50 ms
12,364 KB
testcase_05 AC 128 ms
20,708 KB
testcase_06 AC 111 ms
19,576 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 95 ms
16,996 KB
testcase_11 AC 87 ms
16,320 KB
testcase_12 WA -
testcase_13 AC 44 ms
11,772 KB
testcase_14 WA -
testcase_15 AC 119 ms
19,544 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 116 ms
19,324 KB
testcase_20 AC 132 ms
21,732 KB
testcase_21 AC 132 ms
21,732 KB
testcase_22 AC 135 ms
21,600 KB
testcase_23 AC 135 ms
21,608 KB
testcase_24 AC 128 ms
21,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Y.sort()

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

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

print(sum)
	

0