結果

問題 No.609 Noelちゃんと星々
ユーザー tcltktcltk
提出日時 2021-01-19 01:32:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 105,516 KB
最終ジャッジ日時 2024-12-14 23:04:04
合計ジャッジ時間 7,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
101,248 KB
testcase_01 AC 162 ms
93,440 KB
testcase_02 AC 160 ms
91,668 KB
testcase_03 AC 162 ms
92,672 KB
testcase_04 AC 156 ms
89,656 KB
testcase_05 AC 191 ms
105,448 KB
testcase_06 AC 187 ms
101,304 KB
testcase_07 AC 172 ms
95,496 KB
testcase_08 AC 156 ms
89,352 KB
testcase_09 AC 167 ms
92,528 KB
testcase_10 AC 180 ms
98,552 KB
testcase_11 AC 182 ms
97,280 KB
testcase_12 AC 185 ms
99,584 KB
testcase_13 AC 168 ms
89,600 KB
testcase_14 AC 164 ms
89,768 KB
testcase_15 AC 196 ms
103,272 KB
testcase_16 AC 198 ms
105,164 KB
testcase_17 AC 190 ms
101,268 KB
testcase_18 AC 165 ms
91,264 KB
testcase_19 AC 194 ms
101,752 KB
testcase_20 AC 197 ms
105,260 KB
testcase_21 AC 200 ms
105,140 KB
testcase_22 AC 200 ms
105,164 KB
testcase_23 AC 201 ms
105,516 KB
testcase_24 AC 206 ms
105,472 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