結果

問題 No.609 Noelちゃんと星々
ユーザー Meso MesoMeso Meso
提出日時 2024-12-21 20:27:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,636 KB
最終ジャッジ日時 2024-12-21 20:29:33
合計ジャッジ時間 3,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
19,040 KB
testcase_01 AC 58 ms
14,728 KB
testcase_02 AC 44 ms
13,620 KB
testcase_03 AC 53 ms
14,404 KB
testcase_04 AC 49 ms
12,496 KB
testcase_05 AC 105 ms
20,968 KB
testcase_06 AC 90 ms
19,528 KB
testcase_07 AC 62 ms
15,792 KB
testcase_08 AC 33 ms
11,776 KB
testcase_09 AC 48 ms
14,044 KB
testcase_10 AC 71 ms
17,256 KB
testcase_11 AC 69 ms
16,576 KB
testcase_12 AC 83 ms
18,376 KB
testcase_13 AC 37 ms
12,032 KB
testcase_14 AC 29 ms
11,264 KB
testcase_15 AC 98 ms
19,800 KB
testcase_16 AC 115 ms
21,176 KB
testcase_17 AC 88 ms
18,932 KB
testcase_18 AC 47 ms
13,204 KB
testcase_19 AC 90 ms
19,408 KB
testcase_20 AC 132 ms
21,352 KB
testcase_21 AC 105 ms
21,504 KB
testcase_22 AC 107 ms
21,636 KB
testcase_23 AC 120 ms
21,528 KB
testcase_24 AC 113 ms
21,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
Y = list(map(int, input().split()))
Y.sort()

if n % 2 == 1:
    mid = Y[n//2]
else:
    mid = (Y[n//2] + Y[n//2-1]) // 2

ans = 0
for y in Y:
    ans += abs(mid - y)

print(ans)
0