結果

問題 No.198 キャンディー・ボックス2
ユーザー あかりきあかりき
提出日時 2021-03-14 20:54:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 364 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 84,156 KB
最終ジャッジ日時 2024-11-06 09:41:08
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 85 ms
83,596 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 39 ms
58,316 KB
testcase_10 AC 40 ms
58,584 KB
testcase_11 AC 39 ms
57,812 KB
testcase_12 AC 66 ms
81,904 KB
testcase_13 WA -
testcase_14 AC 38 ms
58,140 KB
testcase_15 AC 39 ms
59,368 KB
testcase_16 AC 40 ms
58,108 KB
testcase_17 AC 39 ms
59,436 KB
testcase_18 AC 39 ms
58,376 KB
testcase_19 AC 51 ms
65,632 KB
testcase_20 AC 60 ms
78,000 KB
testcase_21 AC 59 ms
78,040 KB
testcase_22 AC 62 ms
79,380 KB
testcase_23 WA -
testcase_24 AC 65 ms
79,444 KB
testcase_25 RE -
testcase_26 AC 70 ms
79,196 KB
testcase_27 AC 86 ms
84,120 KB
testcase_28 RE -
testcase_29 AC 85 ms
83,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

b=int(input())
n=int(input())
c=[int(input()) for i in range(n)]
c.sort()
if n//2==1:
  t=c[n//2]
else:
  t=(c[n//2-1]+c[n//2])//2
x=sum(c)+b
ans=[]
for i in range(max(t-10**5,0),t+10**5):
  if n*i<=x:
    ct=0
    for j in range(n):
      if c[j]>=i:
        ct+=c[j]-i
    for j in range(n):
      if c[j]<i:
        ct+=i-c[j]
    ans.append(ct)
print(min(ans))
0