結果

問題 No.609 Noelちゃんと星々
ユーザー tails1434tails1434
提出日時 2020-02-12 07:32:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 104,600 KB
最終ジャッジ日時 2024-10-02 09:57:50
合計ジャッジ時間 6,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
100,572 KB
testcase_01 AC 153 ms
92,672 KB
testcase_02 AC 150 ms
90,752 KB
testcase_03 AC 153 ms
92,288 KB
testcase_04 AC 143 ms
88,576 KB
testcase_05 AC 175 ms
104,216 KB
testcase_06 AC 170 ms
100,996 KB
testcase_07 AC 155 ms
94,848 KB
testcase_08 AC 143 ms
88,832 KB
testcase_09 AC 149 ms
91,264 KB
testcase_10 AC 169 ms
97,792 KB
testcase_11 AC 163 ms
96,128 KB
testcase_12 AC 171 ms
98,944 KB
testcase_13 AC 148 ms
88,816 KB
testcase_14 AC 151 ms
88,960 KB
testcase_15 AC 171 ms
102,128 KB
testcase_16 AC 180 ms
104,280 KB
testcase_17 AC 169 ms
100,480 KB
testcase_18 AC 149 ms
90,752 KB
testcase_19 AC 179 ms
100,864 KB
testcase_20 AC 182 ms
104,600 KB
testcase_21 AC 178 ms
104,560 KB
testcase_22 AC 180 ms
104,576 KB
testcase_23 AC 184 ms
104,576 KB
testcase_24 AC 189 ms
104,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics
import math

def main():
    N = int(input())
    Y = list(map(int, input().split()))
    median = statistics.median_low(Y)
    ans = 0
    for i in range(N):
        ans += abs(Y[i] - median)

    print(ans)



if __name__ == "__main__":
    main()
0