結果

問題 No.288 貯金箱の仕事
ユーザー youzohyouzoh
提出日時 2022-09-19 16:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 778 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-12-22 02:32:24
合計ジャッジ時間 14,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
61,184 KB
testcase_01 AC 46 ms
59,264 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 56 ms
60,996 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 50 ms
60,544 KB
testcase_08 AC 46 ms
59,904 KB
testcase_09 AC 48 ms
60,288 KB
testcase_10 AC 48 ms
60,288 KB
testcase_11 AC 47 ms
60,160 KB
testcase_12 AC 48 ms
60,544 KB
testcase_13 AC 48 ms
60,032 KB
testcase_14 AC 48 ms
60,288 KB
testcase_15 AC 47 ms
60,544 KB
testcase_16 AC 49 ms
60,416 KB
testcase_17 AC 49 ms
60,928 KB
testcase_18 AC 47 ms
60,416 KB
testcase_19 AC 45 ms
59,776 KB
testcase_20 AC 44 ms
59,776 KB
testcase_21 AC 46 ms
60,288 KB
testcase_22 AC 47 ms
60,928 KB
testcase_23 AC 778 ms
64,256 KB
testcase_24 AC 494 ms
64,000 KB
testcase_25 AC 59 ms
64,768 KB
testcase_26 AC 57 ms
65,024 KB
testcase_27 AC 59 ms
65,536 KB
testcase_28 AC 58 ms
64,896 KB
testcase_29 AC 56 ms
64,256 KB
testcase_30 AC 207 ms
63,616 KB
testcase_31 AC 207 ms
63,616 KB
testcase_32 AC 369 ms
64,640 KB
testcase_33 AC 374 ms
63,872 KB
testcase_34 AC 557 ms
64,384 KB
testcase_35 AC 556 ms
64,512 KB
testcase_36 AC 771 ms
64,128 KB
testcase_37 AC 355 ms
62,976 KB
testcase_38 AC 527 ms
63,872 KB
testcase_39 AC 269 ms
63,616 KB
testcase_40 AC 286 ms
63,104 KB
testcase_41 AC 737 ms
64,512 KB
testcase_42 AC 642 ms
64,512 KB
testcase_43 AC 422 ms
70,144 KB
testcase_44 AC 166 ms
63,104 KB
testcase_45 AC 429 ms
63,744 KB
testcase_46 AC 631 ms
64,256 KB
testcase_47 AC 318 ms
63,104 KB
testcase_48 AC 434 ms
64,256 KB
testcase_49 AC 203 ms
63,872 KB
testcase_50 AC 277 ms
63,080 KB
testcase_51 AC 204 ms
63,096 KB
testcase_52 AC 347 ms
64,000 KB
testcase_53 AC 441 ms
64,000 KB
testcase_54 AC 267 ms
64,128 KB
testcase_55 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main() -> None:
  N, M = (int(elt) for elt in input().split())
  A = [int(elt) for elt in input().split()]
  K = [int(elt) for elt in input().split()]
  tot = sum(a * k for (a, k) in zip(A, K)) - M
  # print(f"DEBUG: tot={tot}")
  MAX_V = A[N - 1] * A[N -  1]
  INF = 10**18
  dp = [INF] * (MAX_V + 1)
  dp[0] = 0
  for i in range(N):
    for j in range(MAX_V + 1):
      if j - A[i] >= 0:
        dp[j] = min(dp[j], dp[j - A[i]] + 1)
  # print(f"DEBUG: dp={dp}")
  ans = INF
  for j in range(MAX_V + 1):
    if dp[j] == INF:
      continue
    rem = tot - j
    if rem >= 0 and rem % A[N - 1] == 0:
      ans = min(ans, dp[j] + (rem // A[N - 1]))
  if ans == INF:
    ans = -1
  print(ans)
  return


if __name__ == '__main__':
  main()
0