結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
84,736 KB
testcase_01 AC 57 ms
71,808 KB
testcase_02 AC 55 ms
67,840 KB
testcase_03 AC 57 ms
70,784 KB
testcase_04 AC 48 ms
65,152 KB
testcase_05 AC 84 ms
91,392 KB
testcase_06 AC 82 ms
85,504 KB
testcase_07 AC 64 ms
74,624 KB
testcase_08 AC 45 ms
62,848 KB
testcase_09 AC 56 ms
69,120 KB
testcase_10 AC 68 ms
78,848 KB
testcase_11 AC 65 ms
77,568 KB
testcase_12 AC 71 ms
82,304 KB
testcase_13 AC 48 ms
63,360 KB
testcase_14 AC 43 ms
60,416 KB
testcase_15 AC 78 ms
87,168 KB
testcase_16 AC 85 ms
91,392 KB
testcase_17 AC 73 ms
84,096 KB
testcase_18 AC 54 ms
67,328 KB
testcase_19 AC 77 ms
85,120 KB
testcase_20 AC 86 ms
91,972 KB
testcase_21 AC 88 ms
91,600 KB
testcase_22 AC 85 ms
91,648 KB
testcase_23 AC 85 ms
91,900 KB
testcase_24 AC 85 ms
91,520 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