結果

問題 No.609 Noelちゃんと星々
ユーザー MaboyMaboy
提出日時 2018-03-06 23:03:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,728 KB
最終ジャッジ日時 2024-09-22 01:09:12
合計ジャッジ時間 4,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
18,912 KB
testcase_01 AC 59 ms
14,732 KB
testcase_02 AC 49 ms
13,616 KB
testcase_03 AC 56 ms
14,464 KB
testcase_04 AC 46 ms
12,748 KB
testcase_05 AC 104 ms
20,836 KB
testcase_06 AC 96 ms
19,532 KB
testcase_07 AC 66 ms
15,888 KB
testcase_08 AC 36 ms
11,648 KB
testcase_09 AC 53 ms
14,172 KB
testcase_10 AC 76 ms
17,128 KB
testcase_11 AC 73 ms
16,700 KB
testcase_12 AC 83 ms
18,392 KB
testcase_13 AC 38 ms
12,032 KB
testcase_14 AC 33 ms
11,136 KB
testcase_15 AC 96 ms
19,544 KB
testcase_16 AC 108 ms
21,176 KB
testcase_17 AC 91 ms
18,796 KB
testcase_18 AC 50 ms
13,712 KB
testcase_19 AC 95 ms
19,576 KB
testcase_20 AC 113 ms
21,728 KB
testcase_21 AC 112 ms
21,596 KB
testcase_22 AC 110 ms
21,728 KB
testcase_23 AC 107 ms
21,608 KB
testcase_24 AC 109 ms
21,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
y=sorted(map(int,input().split()))
m=(y[len(y)//2]+list(reversed(y))[len(y)//2])//2
print(sum([abs(m-x) for x in y]))
0