結果
問題 | No.198 キャンディー・ボックス2 |
ユーザー |
![]() |
提出日時 | 2022-06-04 01:43:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 275 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-21 03:32:56 |
合計ジャッジ時間 | 2,265 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 12 WA * 14 |
ソースコード
B=int(input()) N=int(input()) C=[int(input()) for i in range(N)] x=sum(C)//N ANS=1<<100 for i in range(x-10,x+10): if i<0: continue if i*N>sum(C)+B: continue score=0 for c in C: score+=abs(i-c) ANS=min(ANS,score) print(ANS)