結果

問題 No.609 Noelちゃんと星々
ユーザー kryu_______2740kryu_______2740
提出日時 2018-02-22 14:42:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,376 KB
最終ジャッジ日時 2024-10-01 08:57:47
合計ジャッジ時間 4,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
21,644 KB
testcase_01 AC 79 ms
17,608 KB
testcase_02 AC 70 ms
16,364 KB
testcase_03 AC 81 ms
17,280 KB
testcase_04 AC 64 ms
15,224 KB
testcase_05 AC 132 ms
23,832 KB
testcase_06 AC 115 ms
22,260 KB
testcase_07 AC 88 ms
18,544 KB
testcase_08 AC 56 ms
14,464 KB
testcase_09 AC 76 ms
16,792 KB
testcase_10 AC 100 ms
19,996 KB
testcase_11 AC 97 ms
19,444 KB
testcase_12 AC 111 ms
20,988 KB
testcase_13 AC 60 ms
14,848 KB
testcase_14 AC 54 ms
14,080 KB
testcase_15 AC 122 ms
22,532 KB
testcase_16 AC 135 ms
24,044 KB
testcase_17 AC 114 ms
21,928 KB
testcase_18 AC 70 ms
16,332 KB
testcase_19 AC 115 ms
22,268 KB
testcase_20 AC 137 ms
24,244 KB
testcase_21 AC 128 ms
24,312 KB
testcase_22 AC 134 ms
24,244 KB
testcase_23 AC 133 ms
24,376 KB
testcase_24 AC 133 ms
24,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics as st

N = int(input())
Y = list(map(int,input().split()))

#中央値の算出~距離を算出
median = 0.
distance = 0

median = st.median(Y)
for i in range(N):
    distance = distance + abs(median-Y[i])
print(int(distance))
0