結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 484 ms
49,276 KB
testcase_01 AC 471 ms
46,452 KB
testcase_02 AC 463 ms
44,928 KB
testcase_03 AC 461 ms
45,816 KB
testcase_04 AC 471 ms
44,404 KB
testcase_05 AC 500 ms
51,632 KB
testcase_06 AC 480 ms
49,796 KB
testcase_07 AC 479 ms
46,836 KB
testcase_08 AC 458 ms
44,032 KB
testcase_09 AC 472 ms
45,316 KB
testcase_10 AC 480 ms
47,872 KB
testcase_11 AC 485 ms
47,348 KB
testcase_12 AC 478 ms
48,760 KB
testcase_13 AC 445 ms
44,280 KB
testcase_14 AC 440 ms
44,284 KB
testcase_15 AC 477 ms
50,036 KB
testcase_16 AC 496 ms
51,324 KB
testcase_17 AC 503 ms
49,796 KB
testcase_18 AC 456 ms
44,656 KB
testcase_19 AC 489 ms
50,300 KB
testcase_20 AC 523 ms
51,504 KB
testcase_21 AC 516 ms
52,024 KB
testcase_22 AC 515 ms
51,868 KB
testcase_23 AC 525 ms
51,760 KB
testcase_24 AC 498 ms
51,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
Y = np.array(list(map(int, input().split())))
print(sum(abs(Y - int(np.median(Y)))))
0