結果

問題 No.609 Noelちゃんと星々
ユーザー lloyzlloyz
提出日時 2023-05-03 07:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 88,128 KB
最終ジャッジ日時 2024-05-01 11:03:42
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
81,784 KB
testcase_01 AC 56 ms
70,796 KB
testcase_02 AC 50 ms
67,936 KB
testcase_03 AC 54 ms
69,708 KB
testcase_04 AC 47 ms
64,920 KB
testcase_05 AC 81 ms
87,316 KB
testcase_06 AC 75 ms
81,868 KB
testcase_07 AC 60 ms
72,808 KB
testcase_08 AC 43 ms
63,204 KB
testcase_09 AC 50 ms
68,924 KB
testcase_10 AC 62 ms
76,736 KB
testcase_11 AC 60 ms
75,448 KB
testcase_12 AC 65 ms
79,712 KB
testcase_13 AC 44 ms
63,104 KB
testcase_14 AC 41 ms
61,212 KB
testcase_15 AC 73 ms
84,452 KB
testcase_16 AC 79 ms
86,364 KB
testcase_17 AC 73 ms
82,060 KB
testcase_18 AC 47 ms
67,308 KB
testcase_19 AC 70 ms
81,364 KB
testcase_20 AC 78 ms
87,800 KB
testcase_21 AC 78 ms
87,112 KB
testcase_22 AC 79 ms
88,128 KB
testcase_23 AC 77 ms
86,856 KB
testcase_24 AC 77 ms
87,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

A.sort()
ans = 0
for i in range(n):
    ans += abs(A[i] - A[n // 2])
print(ans)
0