結果

問題 No.609 Noelちゃんと星々
ユーザー konabekonabe
提出日時 2017-12-09 01:00:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,740 KB
最終ジャッジ日時 2024-05-07 07:11:34
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
22,144 KB
testcase_01 AC 80 ms
18,100 KB
testcase_02 AC 72 ms
16,652 KB
testcase_03 AC 78 ms
18,152 KB
testcase_04 AC 64 ms
15,616 KB
testcase_05 AC 124 ms
23,944 KB
testcase_06 AC 112 ms
22,636 KB
testcase_07 AC 88 ms
18,904 KB
testcase_08 AC 58 ms
14,720 KB
testcase_09 AC 74 ms
16,828 KB
testcase_10 AC 95 ms
20,232 KB
testcase_11 AC 94 ms
19,684 KB
testcase_12 AC 104 ms
21,352 KB
testcase_13 AC 60 ms
15,232 KB
testcase_14 AC 55 ms
14,336 KB
testcase_15 AC 116 ms
22,780 KB
testcase_16 AC 127 ms
24,408 KB
testcase_17 AC 110 ms
22,168 KB
testcase_18 AC 71 ms
16,752 KB
testcase_19 AC 114 ms
22,508 KB
testcase_20 AC 129 ms
24,608 KB
testcase_21 AC 130 ms
24,736 KB
testcase_22 AC 128 ms
24,616 KB
testcase_23 AC 130 ms
24,740 KB
testcase_24 AC 129 ms
24,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from statistics import median_low, median_high
N = int(input())
Y = list(map(int, input().split()))
P = median_high(Y)
print(int(sum([abs(y - P) for y in Y])))
0