結果

問題 No.609 Noelちゃんと星々
ユーザー ああいいああいい
提出日時 2021-12-05 21:31:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,972 KB
最終ジャッジ日時 2024-07-07 08:48:06
合計ジャッジ時間 3,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
19,152 KB
testcase_01 AC 51 ms
14,844 KB
testcase_02 AC 42 ms
13,600 KB
testcase_03 AC 49 ms
14,580 KB
testcase_04 AC 35 ms
12,544 KB
testcase_05 AC 92 ms
20,948 KB
testcase_06 AC 82 ms
19,516 KB
testcase_07 AC 56 ms
16,008 KB
testcase_08 AC 30 ms
11,776 KB
testcase_09 AC 45 ms
14,024 KB
testcase_10 AC 67 ms
17,116 KB
testcase_11 AC 64 ms
16,552 KB
testcase_12 AC 72 ms
18,388 KB
testcase_13 AC 32 ms
12,032 KB
testcase_14 AC 27 ms
11,136 KB
testcase_15 AC 84 ms
19,656 KB
testcase_16 AC 94 ms
21,288 KB
testcase_17 AC 79 ms
18,912 KB
testcase_18 AC 41 ms
13,456 KB
testcase_19 AC 81 ms
19,388 KB
testcase_20 AC 97 ms
21,972 KB
testcase_21 AC 96 ms
21,844 KB
testcase_22 AC 97 ms
21,724 KB
testcase_23 AC 97 ms
21,724 KB
testcase_24 AC 97 ms
21,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Y.sort()
u = Y[(N+1) // 2 - 1]
S = 0
for i in Y:
    S += abs(u-i)
print(S)
0