結果

問題 No.609 Noelちゃんと星々
ユーザー DexctersuDexctersu
提出日時 2018-01-31 14:55:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,516 KB
最終ジャッジ日時 2024-06-09 12:40:29
合計ジャッジ時間 3,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
18,924 KB
testcase_01 AC 62 ms
14,864 KB
testcase_02 AC 50 ms
13,504 KB
testcase_03 AC 51 ms
15,304 KB
testcase_04 AC 40 ms
12,500 KB
testcase_05 AC 117 ms
20,716 KB
testcase_06 AC 103 ms
19,540 KB
testcase_07 AC 61 ms
15,544 KB
testcase_08 AC 32 ms
11,520 KB
testcase_09 AC 46 ms
14,308 KB
testcase_10 AC 82 ms
17,132 KB
testcase_11 AC 76 ms
16,456 KB
testcase_12 AC 80 ms
18,252 KB
testcase_13 AC 35 ms
11,904 KB
testcase_14 AC 27 ms
11,264 KB
testcase_15 AC 108 ms
19,424 KB
testcase_16 AC 102 ms
20,932 KB
testcase_17 AC 86 ms
18,940 KB
testcase_18 AC 44 ms
13,340 KB
testcase_19 AC 105 ms
19,280 KB
testcase_20 AC 125 ms
21,256 KB
testcase_21 AC 125 ms
21,260 KB
testcase_22 AC 122 ms
21,516 KB
testcase_23 AC 125 ms
21,392 KB
testcase_24 AC 125 ms
21,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
a.sort()
dp=[]
med=len(a)//2
for i in range(n):
    if n%2!=0:
        dp.append(abs(a[i]-a[med]))
    else:
        med_i=(a[med]+a[med-1])//2
        dp.append(abs(a[i]-med_i))
print(sum(dp))
0