結果

問題 No.609 Noelちゃんと星々
ユーザー H3PO4H3PO4
提出日時 2020-10-10 09:10:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,368 KB
最終ジャッジ日時 2024-07-20 15:40:22
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
21,768 KB
testcase_01 AC 67 ms
17,600 KB
testcase_02 AC 63 ms
16,224 KB
testcase_03 AC 76 ms
17,148 KB
testcase_04 AC 56 ms
15,096 KB
testcase_05 AC 104 ms
23,820 KB
testcase_06 AC 97 ms
22,256 KB
testcase_07 AC 73 ms
18,788 KB
testcase_08 AC 50 ms
14,336 KB
testcase_09 AC 64 ms
16,656 KB
testcase_10 AC 81 ms
20,116 KB
testcase_11 AC 80 ms
19,436 KB
testcase_12 AC 94 ms
20,976 KB
testcase_13 AC 54 ms
14,720 KB
testcase_14 AC 52 ms
14,208 KB
testcase_15 AC 99 ms
22,528 KB
testcase_16 AC 107 ms
24,160 KB
testcase_17 AC 95 ms
21,788 KB
testcase_18 AC 62 ms
16,320 KB
testcase_19 AC 106 ms
22,260 KB
testcase_20 AC 120 ms
24,364 KB
testcase_21 AC 115 ms
24,364 KB
testcase_22 AC 112 ms
24,360 KB
testcase_23 AC 112 ms
24,368 KB
testcase_24 AC 108 ms
24,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics

N = int(input())
Y = tuple(map(int, input().split()))
M = statistics.median_low(Y)
print(sum(abs(y - M) for y in Y))
0