結果

問題 No.609 Noelちゃんと星々
ユーザー lemonlemon
提出日時 2021-05-15 10:40:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,876 KB
最終ジャッジ日時 2024-10-02 16:57:43
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
19,048 KB
testcase_01 AC 60 ms
14,872 KB
testcase_02 AC 45 ms
13,688 KB
testcase_03 AC 52 ms
14,868 KB
testcase_04 AC 37 ms
12,500 KB
testcase_05 AC 100 ms
20,852 KB
testcase_06 AC 89 ms
19,416 KB
testcase_07 AC 65 ms
15,800 KB
testcase_08 AC 35 ms
11,776 KB
testcase_09 AC 49 ms
14,108 KB
testcase_10 AC 73 ms
17,132 KB
testcase_11 AC 70 ms
16,584 KB
testcase_12 AC 80 ms
18,380 KB
testcase_13 AC 36 ms
12,160 KB
testcase_14 AC 30 ms
11,264 KB
testcase_15 AC 95 ms
19,684 KB
testcase_16 AC 101 ms
21,324 KB
testcase_17 AC 83 ms
19,068 KB
testcase_18 AC 44 ms
13,592 KB
testcase_19 AC 90 ms
19,416 KB
testcase_20 AC 106 ms
21,876 KB
testcase_21 AC 107 ms
21,748 KB
testcase_22 AC 102 ms
21,876 KB
testcase_23 AC 110 ms
21,876 KB
testcase_24 AC 107 ms
21,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
stdin = sys.stdin

ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
ns = lambda: stdin.readline().strip()
ntp = lambda: tuple(map(int, stdin.readline().split()))
mod = 10 * 9 + 7
inf = 2 << 60

n = ni()
Y = sorted(na())

mid = n // 2
ans = 0
for y in Y:
    ans += abs(y - Y[mid])

print(ans)
0