結果

問題 No.609 Noelちゃんと星々
ユーザー roarisroaris
提出日時 2019-07-26 11:34:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,868 KB
最終ジャッジ日時 2024-07-02 06:23:46
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
18,912 KB
testcase_01 AC 53 ms
14,940 KB
testcase_02 AC 46 ms
13,620 KB
testcase_03 AC 54 ms
14,340 KB
testcase_04 AC 43 ms
12,620 KB
testcase_05 AC 95 ms
20,840 KB
testcase_06 AC 85 ms
19,404 KB
testcase_07 AC 61 ms
15,816 KB
testcase_08 AC 36 ms
11,776 KB
testcase_09 AC 50 ms
14,044 KB
testcase_10 AC 73 ms
17,128 KB
testcase_11 AC 69 ms
16,576 KB
testcase_12 AC 74 ms
18,404 KB
testcase_13 AC 39 ms
12,032 KB
testcase_14 AC 31 ms
11,136 KB
testcase_15 AC 90 ms
19,548 KB
testcase_16 AC 94 ms
21,116 KB
testcase_17 AC 84 ms
19,056 KB
testcase_18 AC 45 ms
13,332 KB
testcase_19 AC 88 ms
19,584 KB
testcase_20 AC 106 ms
21,608 KB
testcase_21 AC 103 ms
21,736 KB
testcase_22 AC 107 ms
21,860 KB
testcase_23 AC 103 ms
21,868 KB
testcase_24 AC 107 ms
21,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def median(seq):
    if N % 2 == 1:
        return seq[(N-1)//2]
    else:
        return (seq[N//2-1]+seq[N//2]) / 2

N = int(input())
Y = list(sorted(map(int, input().split())))
med = median(Y)
ans = sum(abs(Y_i - med) for Y_i in Y)
print(int(ans))
0