結果

問題 No.198 キャンディー・ボックス2
ユーザー あかりきあかりき
提出日時 2021-03-15 00:07:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 1,146 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 101,032 KB
最終ジャッジ日時 2024-11-06 12:12:51
合計ジャッジ時間 5,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
87,192 KB
testcase_01 AC 171 ms
87,264 KB
testcase_02 AC 160 ms
95,724 KB
testcase_03 AC 147 ms
95,568 KB
testcase_04 AC 161 ms
95,696 KB
testcase_05 AC 170 ms
95,748 KB
testcase_06 AC 162 ms
95,716 KB
testcase_07 AC 152 ms
95,352 KB
testcase_08 AC 164 ms
95,332 KB
testcase_09 AC 67 ms
75,784 KB
testcase_10 AC 68 ms
75,780 KB
testcase_11 AC 83 ms
75,580 KB
testcase_12 AC 108 ms
101,032 KB
testcase_13 AC 170 ms
95,812 KB
testcase_14 AC 56 ms
65,012 KB
testcase_15 AC 54 ms
64,604 KB
testcase_16 AC 70 ms
75,704 KB
testcase_17 AC 68 ms
75,404 KB
testcase_18 AC 85 ms
75,716 KB
testcase_19 AC 122 ms
77,912 KB
testcase_20 AC 150 ms
87,236 KB
testcase_21 AC 158 ms
87,240 KB
testcase_22 AC 168 ms
87,528 KB
testcase_23 AC 145 ms
84,804 KB
testcase_24 AC 138 ms
90,520 KB
testcase_25 AC 162 ms
81,792 KB
testcase_26 AC 170 ms
87,748 KB
testcase_27 AC 172 ms
95,572 KB
testcase_28 AC 154 ms
81,820 KB
testcase_29 AC 173 ms
87,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x=sum(c)+b
t3=x//n
for i in range(max(t3-10**5,0),t3+10**5):
  ct=0
  y=b
  for j in range(n):
    if c[j]>=i:
      ct+=c[j]-i
      y+=c[j]-i
  for j in range(n):
    if c[j]<i:
      ct+=i-c[j]
      y-=i-c[j]
  if y>=0:
    ans.append(ct)
print(min(ans))
0