結果

問題 No.198 キャンディー・ボックス2
ユーザー KazunKazun
提出日時 2020-06-12 03:58:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-06-24 03:37:12
合計ジャッジ時間 2,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,048 KB
testcase_01 AC 42 ms
53,084 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 42 ms
52,884 KB
testcase_10 AC 42 ms
52,684 KB
testcase_11 AC 43 ms
52,292 KB
testcase_12 AC 42 ms
52,880 KB
testcase_13 WA -
testcase_14 AC 40 ms
52,512 KB
testcase_15 AC 39 ms
52,152 KB
testcase_16 AC 39 ms
52,544 KB
testcase_17 AC 39 ms
53,244 KB
testcase_18 AC 39 ms
52,584 KB
testcase_19 AC 39 ms
52,204 KB
testcase_20 AC 39 ms
52,680 KB
testcase_21 AC 39 ms
52,408 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 43 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C.sort()

T=10**20
for i in range(min(B+1,N)):
    if i!=0:
        C[i-1]+=1

    U=0
    S=sum(C)
    for j in range(N):
        U+=abs(C[j]-S//N)

    T=min(T,U+i)

print(T)
0