結果

問題 No.198 キャンディー・ボックス2
ユーザー あかりきあかりき
提出日時 2021-03-15 00:00:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 375 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 170,200 KB
最終ジャッジ日時 2024-11-06 12:05:54
合計ジャッジ時間 9,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 393 ms
159,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 379 ms
161,084 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 101 ms
75,428 KB
testcase_10 AC 99 ms
75,320 KB
testcase_11 AC 110 ms
75,740 KB
testcase_12 AC 178 ms
170,200 KB
testcase_13 WA -
testcase_14 AC 51 ms
60,320 KB
testcase_15 AC 50 ms
60,364 KB
testcase_16 AC 98 ms
75,276 KB
testcase_17 AC 103 ms
75,392 KB
testcase_18 AC 111 ms
75,460 KB
testcase_19 AC 160 ms
75,556 KB
testcase_20 AC 286 ms
107,076 KB
testcase_21 AC 353 ms
106,956 KB
testcase_22 AC 309 ms
107,184 KB
testcase_23 WA -
testcase_24 AC 207 ms
109,492 KB
testcase_25 RE -
testcase_26 AC 350 ms
109,408 KB
testcase_27 AC 383 ms
159,048 KB
testcase_28 RE -
testcase_29 AC 395 ms
159,840 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
ans=[]
for i in range(max(t-10**6,0),t+10**6):
  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