結果

問題 No.609 Noelちゃんと星々
ユーザー ssmkzkssmkzk
提出日時 2019-07-03 14:59:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,924 KB
最終ジャッジ日時 2024-09-15 07:03:25
合計ジャッジ時間 3,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
19,048 KB
testcase_01 AC 72 ms
14,812 KB
testcase_02 AC 58 ms
13,500 KB
testcase_03 AC 70 ms
14,472 KB
testcase_04 AC 48 ms
12,376 KB
testcase_05 AC 143 ms
21,580 KB
testcase_06 AC 126 ms
19,276 KB
testcase_07 AC 84 ms
15,892 KB
testcase_08 AC 40 ms
11,520 KB
testcase_09 AC 64 ms
13,920 KB
testcase_10 AC 95 ms
17,124 KB
testcase_11 AC 91 ms
16,580 KB
testcase_12 AC 107 ms
18,400 KB
testcase_13 AC 43 ms
11,904 KB
testcase_14 AC 34 ms
11,008 KB
testcase_15 AC 125 ms
19,728 KB
testcase_16 AC 143 ms
21,924 KB
testcase_17 AC 118 ms
18,940 KB
testcase_18 AC 59 ms
13,240 KB
testcase_19 AC 123 ms
19,532 KB
testcase_20 AC 148 ms
21,516 KB
testcase_21 AC 145 ms
21,512 KB
testcase_22 AC 146 ms
21,512 KB
testcase_23 AC 146 ms
21,516 KB
testcase_24 AC 147 ms
21,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = list(map(int, input().split()))

l.sort()
ck1 = 0
if len(l) % 2 == 0:
    ck = len(l) // 2
    ck1 = ck - 1
else:
    ck = (len(l)+1) // 2

ck = l[ck-1]
ck1 = l[max(ck1-1,0)]


ans = 0
ans1 = 0

for li in l:
    ans += abs(ck - li)
    ans1 += abs(ck1 - li)

print(min(ans, ans1))
0