結果

問題 No.609 Noelちゃんと星々
ユーザー H20H20
提出日時 2021-03-17 10:52:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 86,540 KB
最終ジャッジ日時 2024-11-14 12:45:53
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
80,312 KB
testcase_01 AC 56 ms
69,412 KB
testcase_02 AC 52 ms
66,680 KB
testcase_03 AC 55 ms
69,112 KB
testcase_04 AC 48 ms
64,552 KB
testcase_05 AC 80 ms
86,192 KB
testcase_06 AC 73 ms
81,060 KB
testcase_07 AC 59 ms
71,856 KB
testcase_08 AC 45 ms
62,476 KB
testcase_09 AC 53 ms
68,784 KB
testcase_10 AC 65 ms
75,868 KB
testcase_11 AC 62 ms
74,488 KB
testcase_12 AC 69 ms
79,412 KB
testcase_13 AC 47 ms
63,140 KB
testcase_14 AC 44 ms
60,560 KB
testcase_15 AC 76 ms
81,716 KB
testcase_16 AC 81 ms
85,132 KB
testcase_17 AC 73 ms
79,708 KB
testcase_18 AC 51 ms
65,884 KB
testcase_19 AC 74 ms
80,988 KB
testcase_20 AC 81 ms
85,128 KB
testcase_21 AC 81 ms
85,916 KB
testcase_22 AC 80 ms
85,820 KB
testcase_23 AC 82 ms
85,500 KB
testcase_24 AC 82 ms
86,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A = list(map(int,input().split()))
A.sort()
mid = A[N//2]
ans = 0 
for a in A:
    ans += abs(a-mid)
print(ans)
0