結果

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

ソースコード

diff #

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

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

for i in C:

    if i*N>sum(C)+B:
        continue

    score=0

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

    ANS=min(ANS,score)

print(ANS)
0