結果

問題 No.198 キャンディー・ボックス2
ユーザー rlangevinrlangevin
提出日時 2023-01-17 00:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 207 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,912 KB
最終ジャッジ日時 2024-06-10 06:18:09
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,640 KB
testcase_01 AC 31 ms
53,180 KB
testcase_02 AC 35 ms
52,344 KB
testcase_03 AC 36 ms
52,324 KB
testcase_04 AC 32 ms
52,808 KB
testcase_05 AC 33 ms
51,956 KB
testcase_06 AC 32 ms
52,680 KB
testcase_07 AC 32 ms
53,232 KB
testcase_08 AC 34 ms
53,900 KB
testcase_09 AC 36 ms
52,616 KB
testcase_10 AC 32 ms
53,156 KB
testcase_11 AC 34 ms
53,036 KB
testcase_12 AC 34 ms
52,180 KB
testcase_13 AC 34 ms
51,936 KB
testcase_14 AC 33 ms
53,832 KB
testcase_15 AC 33 ms
53,088 KB
testcase_16 AC 33 ms
52,832 KB
testcase_17 AC 34 ms
51,680 KB
testcase_18 AC 34 ms
52,356 KB
testcase_19 AC 34 ms
52,648 KB
testcase_20 AC 33 ms
52,560 KB
testcase_21 AC 33 ms
52,764 KB
testcase_22 AC 33 ms
53,912 KB
testcase_23 AC 33 ms
52,484 KB
testcase_24 AC 34 ms
52,644 KB
testcase_25 AC 33 ms
52,200 KB
testcase_26 AC 34 ms
51,884 KB
testcase_27 AC 33 ms
53,164 KB
testcase_28 AC 34 ms
52,384 KB
testcase_29 AC 34 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = int(input())
N = int(input())
C = [0] * N
for i in range(N):
    C[i] = int(input())
    B += C[i]
M = B//N
C.sort()
M = min(M, C[N//2])
ans = 0
for i in range(N):
    ans += abs(M - C[i])
print(ans)    
0