結果

問題 No.198 キャンディー・ボックス2
コンテスト
ユーザー titia
提出日時 2022-06-04 01:49:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2025-11-26 11:46:13
合計ジャッジ時間 2,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

B=int(input())
N=int(input())
C=[int(input()) for i in range(N)]

x=sum(C)//N
ANS=1<<100

for xx in C:

    if  xx*N>sum(C)+B:
        i=(sum(C)+B)//N
    else:
        i=xx

    score=0

    for c in C:
        score+=abs(i-c)

    ANS=min(ANS,score)

print(ANS)
0