結果

問題 No.609 Noelちゃんと星々
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-11 16:39:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,856 KB
最終ジャッジ日時 2024-09-19 21:21:23
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
18,900 KB
testcase_01 AC 48 ms
14,720 KB
testcase_02 AC 42 ms
13,604 KB
testcase_03 AC 46 ms
14,456 KB
testcase_04 AC 36 ms
12,544 KB
testcase_05 AC 92 ms
20,824 KB
testcase_06 AC 83 ms
19,392 KB
testcase_07 AC 53 ms
15,880 KB
testcase_08 AC 32 ms
11,648 KB
testcase_09 AC 45 ms
13,900 KB
testcase_10 AC 64 ms
17,236 KB
testcase_11 AC 60 ms
16,560 KB
testcase_12 AC 68 ms
18,392 KB
testcase_13 AC 33 ms
12,160 KB
testcase_14 AC 29 ms
11,136 KB
testcase_15 AC 79 ms
19,792 KB
testcase_16 AC 86 ms
21,164 KB
testcase_17 AC 72 ms
18,916 KB
testcase_18 AC 40 ms
13,444 KB
testcase_19 AC 74 ms
19,392 KB
testcase_20 AC 88 ms
21,856 KB
testcase_21 AC 90 ms
21,720 KB
testcase_22 AC 88 ms
21,724 KB
testcase_23 AC 88 ms
21,856 KB
testcase_24 AC 91 ms
21,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x = Y[n // 2]
ans = sum(abs(x - y) for y in Y)
print(ans)

0