結果

問題 No.198 キャンディー・ボックス2
ユーザー あかりきあかりき
提出日時 2021-03-15 00:02:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 902 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 100,888 KB
最終ジャッジ日時 2024-11-06 12:07:52
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
83,852 KB
testcase_01 AC 128 ms
83,456 KB
testcase_02 AC 127 ms
91,132 KB
testcase_03 AC 119 ms
92,136 KB
testcase_04 AC 125 ms
90,972 KB
testcase_05 AC 132 ms
91,092 KB
testcase_06 AC 127 ms
91,056 KB
testcase_07 AC 118 ms
92,172 KB
testcase_08 AC 133 ms
91,124 KB
testcase_09 AC 52 ms
71,208 KB
testcase_10 AC 52 ms
71,344 KB
testcase_11 AC 72 ms
75,600 KB
testcase_12 AC 93 ms
100,888 KB
testcase_13 AC 133 ms
91,388 KB
testcase_14 AC 50 ms
62,180 KB
testcase_15 AC 50 ms
61,996 KB
testcase_16 AC 54 ms
70,868 KB
testcase_17 AC 53 ms
71,136 KB
testcase_18 AC 72 ms
75,692 KB
testcase_19 AC 94 ms
76,836 KB
testcase_20 AC 117 ms
84,120 KB
testcase_21 AC 121 ms
84,388 KB
testcase_22 AC 126 ms
84,504 KB
testcase_23 WA -
testcase_24 AC 102 ms
84,516 KB
testcase_25 RE -
testcase_26 AC 129 ms
84,388 KB
testcase_27 AC 138 ms
91,928 KB
testcase_28 RE -
testcase_29 AC 129 ms
83,092 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)
print(min(ans))
0