結果

問題 No.609 Noelちゃんと星々
ユーザー rlangevinrlangevin
提出日時 2023-01-04 20:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 86,280 KB
最終ジャッジ日時 2024-05-05 22:59:54
合計ジャッジ時間 4,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
79,632 KB
testcase_01 AC 56 ms
70,372 KB
testcase_02 AC 50 ms
66,588 KB
testcase_03 AC 51 ms
68,836 KB
testcase_04 AC 47 ms
63,820 KB
testcase_05 AC 78 ms
85,320 KB
testcase_06 AC 72 ms
80,664 KB
testcase_07 AC 59 ms
71,780 KB
testcase_08 AC 40 ms
63,204 KB
testcase_09 AC 52 ms
68,020 KB
testcase_10 AC 61 ms
75,228 KB
testcase_11 AC 57 ms
73,576 KB
testcase_12 AC 63 ms
78,260 KB
testcase_13 AC 48 ms
63,856 KB
testcase_14 AC 40 ms
61,108 KB
testcase_15 AC 70 ms
81,868 KB
testcase_16 AC 72 ms
86,128 KB
testcase_17 AC 66 ms
79,812 KB
testcase_18 AC 46 ms
66,924 KB
testcase_19 AC 74 ms
81,300 KB
testcase_20 AC 76 ms
86,280 KB
testcase_21 AC 79 ms
85,784 KB
testcase_22 AC 79 ms
84,844 KB
testcase_23 AC 76 ms
85,020 KB
testcase_24 AC 76 ms
84,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(A, n):
    val = 0
    for a in A:
        val += abs(A[n] - a)
    return val 

N = int(input())
Y = list(map(int, input().split()))
Y.sort()
if N % 2:
    print(calc(Y, N//2))
else:
    print(min(calc(Y, N//2), calc(Y, N//2 - 1)))
0