結果

問題 No.609 Noelちゃんと星々
ユーザー _matumo__matumo_
提出日時 2021-01-05 12:44:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,720 KB
最終ジャッジ日時 2024-10-15 19:38:54
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
18,772 KB
testcase_01 AC 52 ms
14,712 KB
testcase_02 AC 43 ms
13,472 KB
testcase_03 AC 50 ms
14,456 KB
testcase_04 AC 41 ms
12,416 KB
testcase_05 AC 92 ms
20,700 KB
testcase_06 AC 82 ms
19,384 KB
testcase_07 AC 57 ms
15,876 KB
testcase_08 AC 32 ms
11,776 KB
testcase_09 AC 46 ms
13,808 KB
testcase_10 AC 68 ms
17,112 KB
testcase_11 AC 64 ms
16,428 KB
testcase_12 AC 73 ms
18,388 KB
testcase_13 AC 33 ms
12,032 KB
testcase_14 AC 29 ms
11,136 KB
testcase_15 AC 85 ms
19,660 KB
testcase_16 AC 93 ms
21,032 KB
testcase_17 AC 82 ms
18,908 KB
testcase_18 AC 44 ms
13,312 KB
testcase_19 AC 85 ms
19,388 KB
testcase_20 AC 97 ms
21,716 KB
testcase_21 AC 95 ms
21,720 KB
testcase_22 AC 94 ms
21,588 KB
testcase_23 AC 96 ms
21,596 KB
testcase_24 AC 95 ms
21,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
p=sorted(int(s) for s in input().split())
m=p[N//2]
print(sum(abs(a-m) for a in p))
0