結果

問題 No.609 Noelちゃんと星々
ユーザー tcltktcltk
提出日時 2021-01-19 01:32:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,472 KB
最終ジャッジ日時 2024-05-08 17:24:20
合計ジャッジ時間 7,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
100,992 KB
testcase_01 AC 182 ms
93,824 KB
testcase_02 AC 170 ms
91,520 KB
testcase_03 AC 177 ms
92,544 KB
testcase_04 AC 166 ms
89,984 KB
testcase_05 AC 200 ms
104,960 KB
testcase_06 AC 196 ms
101,632 KB
testcase_07 AC 178 ms
95,232 KB
testcase_08 AC 166 ms
89,600 KB
testcase_09 AC 172 ms
91,776 KB
testcase_10 AC 185 ms
98,432 KB
testcase_11 AC 183 ms
97,280 KB
testcase_12 AC 193 ms
99,968 KB
testcase_13 AC 171 ms
89,856 KB
testcase_14 AC 164 ms
89,728 KB
testcase_15 AC 201 ms
103,424 KB
testcase_16 AC 204 ms
105,088 KB
testcase_17 AC 194 ms
100,992 KB
testcase_18 AC 171 ms
91,648 KB
testcase_19 AC 196 ms
101,888 KB
testcase_20 AC 204 ms
105,216 KB
testcase_21 AC 204 ms
105,344 KB
testcase_22 AC 206 ms
105,472 KB
testcase_23 AC 207 ms
105,216 KB
testcase_24 AC 207 ms
105,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N = int(input())
    Y = sorted(list(map(int, input().split())))

    n = N // 2
    d = sum(abs(y - Y[n]) for y in Y)
    print(d)

if __name__ == '__main__':
    main()
0