結果

問題 No.198 キャンディー・ボックス2
ユーザー ntudantuda
提出日時 2024-05-27 19:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 327 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 54,036 KB
最終ジャッジ日時 2024-05-27 19:44:05
合計ジャッジ時間 3,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,540 KB
testcase_01 AC 39 ms
53,468 KB
testcase_02 AC 38 ms
52,812 KB
testcase_03 AC 38 ms
52,376 KB
testcase_04 AC 38 ms
54,036 KB
testcase_05 AC 39 ms
52,984 KB
testcase_06 AC 38 ms
52,964 KB
testcase_07 AC 38 ms
53,380 KB
testcase_08 AC 38 ms
52,392 KB
testcase_09 AC 39 ms
52,372 KB
testcase_10 AC 37 ms
52,804 KB
testcase_11 AC 38 ms
52,756 KB
testcase_12 AC 38 ms
53,576 KB
testcase_13 AC 38 ms
53,636 KB
testcase_14 AC 38 ms
52,960 KB
testcase_15 AC 38 ms
52,460 KB
testcase_16 AC 39 ms
53,004 KB
testcase_17 AC 38 ms
52,812 KB
testcase_18 AC 38 ms
52,524 KB
testcase_19 AC 38 ms
52,616 KB
testcase_20 AC 38 ms
53,084 KB
testcase_21 AC 38 ms
52,240 KB
testcase_22 AC 37 ms
52,420 KB
testcase_23 AC 38 ms
52,820 KB
testcase_24 AC 38 ms
52,756 KB
testcase_25 AC 38 ms
52,072 KB
testcase_26 AC 39 ms
53,060 KB
testcase_27 AC 38 ms
52,316 KB
testcase_28 AC 38 ms
53,028 KB
testcase_29 AC 37 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = int(input())
N = int(input())
C = [int(input()) for _ in range(N)]
INF = 10 ** 10 + 1
maxx = (B + sum(C)) // N
C.sort()
D = [min(maxx, C[N // 2])]
if N % 2 == 0:
    D.append(min(maxx, C[N // 2 - 1]))
ans = INF
for j in D:
    tmp = 0
    for i in range(N):
        tmp += abs(C[i] - j)
    ans = min(ans, tmp)

print(ans)
0