結果

問題 No.609 Noelちゃんと星々
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-27 06:49:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-07-05 08:49:30
合計ジャッジ時間 3,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
80,800 KB
testcase_01 AC 59 ms
69,760 KB
testcase_02 AC 52 ms
66,544 KB
testcase_03 AC 56 ms
69,376 KB
testcase_04 AC 50 ms
63,616 KB
testcase_05 AC 82 ms
84,864 KB
testcase_06 AC 80 ms
80,128 KB
testcase_07 AC 63 ms
72,832 KB
testcase_08 AC 47 ms
62,208 KB
testcase_09 AC 55 ms
67,712 KB
testcase_10 AC 67 ms
75,648 KB
testcase_11 AC 65 ms
73,984 KB
testcase_12 AC 72 ms
78,336 KB
testcase_13 AC 48 ms
63,360 KB
testcase_14 AC 44 ms
60,416 KB
testcase_15 AC 77 ms
81,664 KB
testcase_16 AC 84 ms
86,272 KB
testcase_17 AC 74 ms
80,896 KB
testcase_18 AC 53 ms
66,944 KB
testcase_19 AC 77 ms
80,384 KB
testcase_20 AC 86 ms
85,248 KB
testcase_21 AC 85 ms
84,992 KB
testcase_22 AC 84 ms
85,632 KB
testcase_23 AC 85 ms
85,376 KB
testcase_24 AC 84 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

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)
    y2 = math.ceil((Y[n//2-1]+Y[n//2])/2)
    ans1 = 0
    ans2 = 0
    for i in range(n):
        ans1 += abs(Y[i]-y1)
        ans2 += abs(Y[i]-y2)
    ans = min(ans1, ans2)
print(ans)
0