結果

問題 No.609 Noelちゃんと星々
ユーザー akitsugu777akitsugu777
提出日時 2018-11-19 13:23:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,936 KB
最終ジャッジ日時 2024-06-06 20:59:39
合計ジャッジ時間 3,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
18,900 KB
testcase_01 AC 63 ms
14,716 KB
testcase_02 AC 51 ms
13,728 KB
testcase_03 AC 61 ms
14,460 KB
testcase_04 AC 43 ms
12,544 KB
testcase_05 AC 116 ms
20,972 KB
testcase_06 AC 103 ms
19,512 KB
testcase_07 AC 71 ms
15,880 KB
testcase_08 AC 37 ms
11,648 KB
testcase_09 AC 55 ms
13,900 KB
testcase_10 AC 82 ms
17,240 KB
testcase_11 AC 78 ms
16,552 KB
testcase_12 AC 92 ms
18,392 KB
testcase_13 AC 40 ms
12,032 KB
testcase_14 AC 34 ms
11,136 KB
testcase_15 AC 106 ms
19,788 KB
testcase_16 AC 120 ms
21,160 KB
testcase_17 AC 99 ms
18,912 KB
testcase_18 AC 51 ms
13,416 KB
testcase_19 AC 106 ms
19,512 KB
testcase_20 AC 123 ms
21,720 KB
testcase_21 AC 124 ms
21,720 KB
testcase_22 AC 126 ms
21,844 KB
testcase_23 AC 122 ms
21,936 KB
testcase_24 AC 123 ms
21,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = sorted(map(int,input().split()))

x = l[n//2]

y = 0
for i in l:
    y += abs(x-i)

print(y)
0