結果

問題 No.609 Noelちゃんと星々
ユーザー konabekonabe
提出日時 2017-12-09 00:54:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,740 KB
最終ジャッジ日時 2024-11-29 21:22:20
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
21,892 KB
testcase_01 AC 76 ms
18,100 KB
testcase_02 AC 66 ms
16,656 KB
testcase_03 AC 72 ms
17,900 KB
testcase_04 AC 59 ms
15,472 KB
testcase_05 AC 116 ms
23,816 KB
testcase_06 AC 107 ms
22,380 KB
testcase_07 AC 84 ms
19,032 KB
testcase_08 AC 55 ms
14,464 KB
testcase_09 AC 70 ms
16,788 KB
testcase_10 AC 93 ms
20,108 KB
testcase_11 AC 90 ms
19,808 KB
testcase_12 AC 100 ms
21,348 KB
testcase_13 AC 58 ms
15,360 KB
testcase_14 AC 51 ms
14,208 KB
testcase_15 AC 108 ms
22,652 KB
testcase_16 AC 119 ms
24,284 KB
testcase_17 AC 104 ms
22,164 KB
testcase_18 AC 67 ms
16,756 KB
testcase_19 AC 107 ms
22,380 KB
testcase_20 AC 122 ms
24,612 KB
testcase_21 AC 123 ms
24,612 KB
testcase_22 AC 122 ms
24,608 KB
testcase_23 AC 122 ms
24,612 KB
testcase_24 AC 122 ms
24,740 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(sum([abs(y - P) for y in Y]))
0