結果

問題 No.609 Noelちゃんと星々
ユーザー titiatitia
提出日時 2023-12-28 03:54:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,624 KB
最終ジャッジ日時 2024-09-27 15:37:51
合計ジャッジ時間 4,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
18,908 KB
testcase_01 AC 56 ms
14,724 KB
testcase_02 AC 46 ms
13,484 KB
testcase_03 AC 58 ms
14,516 KB
testcase_04 AC 40 ms
12,416 KB
testcase_05 AC 106 ms
20,960 KB
testcase_06 AC 92 ms
19,396 KB
testcase_07 AC 64 ms
15,656 KB
testcase_08 AC 33 ms
11,776 KB
testcase_09 AC 51 ms
13,776 KB
testcase_10 AC 73 ms
17,248 KB
testcase_11 AC 70 ms
16,564 KB
testcase_12 AC 83 ms
18,244 KB
testcase_13 AC 38 ms
12,032 KB
testcase_14 AC 31 ms
11,136 KB
testcase_15 AC 94 ms
19,664 KB
testcase_16 AC 104 ms
21,296 KB
testcase_17 AC 89 ms
19,048 KB
testcase_18 AC 47 ms
13,188 KB
testcase_19 AC 89 ms
19,264 KB
testcase_20 AC 105 ms
21,624 KB
testcase_21 AC 104 ms
21,500 KB
testcase_22 AC 109 ms
21,368 KB
testcase_23 AC 103 ms
21,508 KB
testcase_24 AC 102 ms
21,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=sorted(map(int,input().split()))

x=A[len(A)//2]
ANS=0
for a in A:
    ANS+=abs(x-a)
print(ANS)
0