結果

問題 No.609 Noelちゃんと星々
ユーザー 👑 KazunKazun
提出日時 2020-11-12 04:17:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-07-22 18:57:37
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
80,128 KB
testcase_01 AC 65 ms
69,632 KB
testcase_02 AC 59 ms
66,048 KB
testcase_03 AC 63 ms
68,224 KB
testcase_04 AC 56 ms
64,256 KB
testcase_05 AC 92 ms
85,760 KB
testcase_06 AC 84 ms
81,024 KB
testcase_07 AC 69 ms
72,064 KB
testcase_08 AC 53 ms
61,696 KB
testcase_09 AC 62 ms
67,200 KB
testcase_10 AC 75 ms
75,648 KB
testcase_11 AC 73 ms
74,240 KB
testcase_12 AC 80 ms
78,080 KB
testcase_13 AC 55 ms
61,952 KB
testcase_14 AC 50 ms
59,904 KB
testcase_15 AC 87 ms
82,688 KB
testcase_16 AC 93 ms
85,888 KB
testcase_17 AC 84 ms
80,000 KB
testcase_18 AC 60 ms
66,304 KB
testcase_19 AC 84 ms
80,896 KB
testcase_20 AC 94 ms
86,912 KB
testcase_21 AC 94 ms
86,016 KB
testcase_22 AC 94 ms
86,272 KB
testcase_23 AC 93 ms
86,272 KB
testcase_24 AC 93 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Y=sorted(list(map(int,input().split())))
alpha=Y[N//2]
print(sum([abs(alpha-y) for y in Y]))
0