結果

問題 No.198 キャンディー・ボックス2
ユーザー るこーそーるこーそー
提出日時 2024-09-20 13:12:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 349 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 53,696 KB
最終ジャッジ日時 2024-09-20 13:12:11
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,336 KB
testcase_01 AC 42 ms
52,820 KB
testcase_02 AC 41 ms
53,336 KB
testcase_03 AC 41 ms
52,200 KB
testcase_04 AC 41 ms
52,004 KB
testcase_05 AC 40 ms
53,240 KB
testcase_06 AC 41 ms
53,696 KB
testcase_07 AC 40 ms
52,752 KB
testcase_08 AC 40 ms
53,264 KB
testcase_09 AC 40 ms
52,764 KB
testcase_10 AC 40 ms
52,412 KB
testcase_11 AC 41 ms
52,676 KB
testcase_12 AC 39 ms
52,740 KB
testcase_13 AC 41 ms
52,868 KB
testcase_14 AC 40 ms
52,816 KB
testcase_15 AC 40 ms
53,120 KB
testcase_16 AC 39 ms
53,472 KB
testcase_17 AC 40 ms
53,540 KB
testcase_18 AC 40 ms
52,092 KB
testcase_19 AC 40 ms
52,556 KB
testcase_20 AC 41 ms
52,632 KB
testcase_21 AC 41 ms
52,804 KB
testcase_22 AC 40 ms
52,264 KB
testcase_23 AC 40 ms
53,456 KB
testcase_24 AC 40 ms
53,408 KB
testcase_25 AC 41 ms
53,084 KB
testcase_26 AC 40 ms
52,064 KB
testcase_27 AC 41 ms
52,132 KB
testcase_28 AC 40 ms
53,208 KB
testcase_29 AC 40 ms
52,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b=int(input())
n=int(input())
C=[int(input()) for _ in range(n)]

def cnt(x):
    return sum(abs(c-x) for c in C)

ng,ok=-1,(sum(C)+b)//n
while ok-ng>3:
    mid1=(ng*2+ok)//3
    mid2=(ng+ok*2)//3
    
    if cnt(mid1)<cnt(mid2):
        ok=mid2
    else:
        ng=mid1

ans=float('INF')
for i in range(ng,ok+1):
    ans=min(ans,cnt(i))
print(ans)
0