結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 59 ms
14,808 KB
testcase_02 AC 49 ms
13,360 KB
testcase_03 WA -
testcase_04 AC 40 ms
12,364 KB
testcase_05 AC 106 ms
20,836 KB
testcase_06 AC 97 ms
19,580 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 77 ms
16,996 KB
testcase_11 AC 73 ms
16,572 KB
testcase_12 WA -
testcase_13 AC 35 ms
12,032 KB
testcase_14 WA -
testcase_15 AC 94 ms
19,544 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 96 ms
19,448 KB
testcase_20 AC 109 ms
21,604 KB
testcase_21 AC 108 ms
21,604 KB
testcase_22 AC 109 ms
21,604 KB
testcase_23 AC 110 ms
21,612 KB
testcase_24 AC 111 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