結果

問題 No.198 キャンディー・ボックス2
ユーザー ntudantuda
提出日時 2024-05-27 19:33:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 561 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-05-27 19:33:38
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,744 KB
testcase_01 AC 33 ms
53,940 KB
testcase_02 AC 34 ms
52,552 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 34 ms
52,988 KB
testcase_05 AC 33 ms
52,964 KB
testcase_06 AC 34 ms
53,564 KB
testcase_07 AC 33 ms
53,620 KB
testcase_08 AC 42 ms
52,724 KB
testcase_09 AC 36 ms
53,512 KB
testcase_10 AC 36 ms
52,340 KB
testcase_11 AC 35 ms
52,276 KB
testcase_12 AC 37 ms
52,540 KB
testcase_13 AC 38 ms
52,944 KB
testcase_14 AC 32 ms
52,260 KB
testcase_15 AC 30 ms
52,432 KB
testcase_16 AC 33 ms
53,140 KB
testcase_17 AC 32 ms
52,272 KB
testcase_18 AC 32 ms
53,812 KB
testcase_19 AC 32 ms
53,272 KB
testcase_20 AC 39 ms
52,128 KB
testcase_21 AC 34 ms
52,924 KB
testcase_22 AC 32 ms
53,872 KB
testcase_23 AC 34 ms
53,136 KB
testcase_24 AC 31 ms
52,204 KB
testcase_25 AC 33 ms
53,220 KB
testcase_26 AC 37 ms
52,940 KB
testcase_27 AC 34 ms
53,652 KB
testcase_28 AC 33 ms
52,320 KB
testcase_29 AC 32 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B = int(input())
N = int(input())
C = [int(input()) for _ in range(N)]
INF = 10 ** 10 + 1
maxx = (B + sum(C)) // N


def calc(x):
    tmp = 0
    for i in range(N):
        tmp += abs(C[i] - x)
    return tmp

lb = 0
ub = maxx + 1
while ub - lb > 1:
    mid1 = 2 * lb / 3 + ub / 3
    mid2 = lb / 3 + 2 * ub / 3
    if calc(mid1) < calc(mid2):
        ub = mid2
    else:
        lb = mid1

lb = int(lb)
ans = INF
for j in range(lb, min(int(lb) + 1, maxx) + 1):
    tmp = 0
    for i in range(N):
        tmp += abs(C[i] - j)
    ans = min(ans, tmp)
print(ans)
0