結果

問題 No.609 Noelちゃんと星々
ユーザー yansi819yansi819
提出日時 2024-05-16 08:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 89,432 KB
最終ジャッジ日時 2024-05-16 08:57:21
合計ジャッジ時間 3,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
80,696 KB
testcase_01 AC 55 ms
72,592 KB
testcase_02 AC 50 ms
68,644 KB
testcase_03 AC 51 ms
69,500 KB
testcase_04 AC 46 ms
65,368 KB
testcase_05 AC 78 ms
87,968 KB
testcase_06 AC 72 ms
83,064 KB
testcase_07 AC 56 ms
73,192 KB
testcase_08 AC 41 ms
62,728 KB
testcase_09 AC 50 ms
69,332 KB
testcase_10 AC 73 ms
77,300 KB
testcase_11 AC 63 ms
76,856 KB
testcase_12 AC 65 ms
78,424 KB
testcase_13 AC 46 ms
64,564 KB
testcase_14 AC 40 ms
61,136 KB
testcase_15 AC 73 ms
84,708 KB
testcase_16 AC 76 ms
85,736 KB
testcase_17 AC 67 ms
80,376 KB
testcase_18 AC 46 ms
66,400 KB
testcase_19 AC 75 ms
82,808 KB
testcase_20 AC 80 ms
88,112 KB
testcase_21 AC 79 ms
89,432 KB
testcase_22 AC 82 ms
88,936 KB
testcase_23 AC 82 ms
88,584 KB
testcase_24 AC 84 ms
88,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Y = list(map(int, input().split()))
Y.sort()
if N % 2 == 1:
    H = Y[(N + 1) // 2 - 1]
    print(sum([abs(Y[i] - H) for i in range(N)]))
else:
    H1 = Y[N // 2 - 1]
    H2 = Y[N // 2]
    print(min(sum([abs(Y[i] - H1) for i in range(N)]), sum([abs(Y[i] - H2) for i in range(N)])))
0