結果

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

ソースコード

diff #

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