結果

問題 No.609 Noelちゃんと星々
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-27 06:47:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 366 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-07-05 08:49:26
合計ジャッジ時間 4,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
80,256 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 66 ms
69,248 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 71 ms
72,448 KB
testcase_08 AC 51 ms
61,952 KB
testcase_09 AC 62 ms
67,968 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 82 ms
78,208 KB
testcase_13 RE -
testcase_14 AC 51 ms
60,416 KB
testcase_15 RE -
testcase_16 AC 96 ms
86,272 KB
testcase_17 AC 85 ms
80,768 KB
testcase_18 AC 59 ms
66,560 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
Y = list(map(int, input().split()))
Y.sort()

import math

if n%2 == 1:
    ans = 0
    for i in range(n):
        ans += abs(Y[i]-Y[n//2])
else:
    y1 = math.floor((Y[n//2-1]+Y[n//2])/2)
    y1 = math.ceil((Y[n//2-1]+Y[n//2])/2)
    for i in range(n):
        ans1 += abs(Y[i]-y1)
        ans2 += abs(Y[i]-y2)
    ans = min(ans1, ans2)
print(ans)
0