結果

問題 No.609 Noelちゃんと星々
ユーザー convexineqconvexineq
提出日時 2021-03-31 02:31:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 91,920 KB
最終ジャッジ日時 2024-12-14 04:55:19
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
84,980 KB
testcase_01 AC 59 ms
72,776 KB
testcase_02 AC 53 ms
68,632 KB
testcase_03 AC 55 ms
70,576 KB
testcase_04 AC 50 ms
65,312 KB
testcase_05 AC 85 ms
91,460 KB
testcase_06 AC 78 ms
86,652 KB
testcase_07 AC 63 ms
75,652 KB
testcase_08 AC 48 ms
64,212 KB
testcase_09 AC 55 ms
69,240 KB
testcase_10 AC 69 ms
80,232 KB
testcase_11 AC 68 ms
77,980 KB
testcase_12 AC 74 ms
82,468 KB
testcase_13 AC 46 ms
63,856 KB
testcase_14 AC 43 ms
60,824 KB
testcase_15 AC 79 ms
87,288 KB
testcase_16 AC 88 ms
91,088 KB
testcase_17 AC 77 ms
84,660 KB
testcase_18 AC 54 ms
67,816 KB
testcase_19 AC 78 ms
86,596 KB
testcase_20 AC 89 ms
91,384 KB
testcase_21 AC 86 ms
91,856 KB
testcase_22 AC 87 ms
91,560 KB
testcase_23 AC 84 ms
91,456 KB
testcase_24 AC 88 ms
91,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
a.sort()
v = a[n//2]
print(sum(abs(ai-v) for ai in a))
0