結果

問題 No.609 Noelちゃんと星々
ユーザー ntudantuda
提出日時 2024-09-15 20:01:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-09-15 20:01:23
合計ジャッジ時間 4,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
79,232 KB
testcase_01 AC 64 ms
68,608 KB
testcase_02 AC 58 ms
65,792 KB
testcase_03 AC 63 ms
68,480 KB
testcase_04 AC 54 ms
63,232 KB
testcase_05 AC 90 ms
83,968 KB
testcase_06 AC 82 ms
79,232 KB
testcase_07 AC 69 ms
71,680 KB
testcase_08 AC 50 ms
61,184 KB
testcase_09 AC 61 ms
66,688 KB
testcase_10 AC 73 ms
74,752 KB
testcase_11 AC 72 ms
73,088 KB
testcase_12 AC 80 ms
77,312 KB
testcase_13 AC 53 ms
62,208 KB
testcase_14 AC 49 ms
59,904 KB
testcase_15 AC 85 ms
80,896 KB
testcase_16 AC 91 ms
84,608 KB
testcase_17 AC 82 ms
78,976 KB
testcase_18 AC 58 ms
65,920 KB
testcase_19 AC 82 ms
79,488 KB
testcase_20 AC 92 ms
84,736 KB
testcase_21 AC 92 ms
84,992 KB
testcase_22 AC 92 ms
84,736 KB
testcase_23 AC 93 ms
84,352 KB
testcase_24 AC 92 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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