結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
61,184 KB
testcase_01 AC 52 ms
60,032 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 59 ms
61,056 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 55 ms
61,056 KB
testcase_08 AC 52 ms
59,648 KB
testcase_09 AC 55 ms
60,800 KB
testcase_10 AC 53 ms
60,672 KB
testcase_11 AC 51 ms
59,776 KB
testcase_12 AC 53 ms
60,672 KB
testcase_13 AC 51 ms
60,416 KB
testcase_14 AC 54 ms
60,544 KB
testcase_15 AC 55 ms
60,416 KB
testcase_16 AC 53 ms
60,928 KB
testcase_17 AC 53 ms
60,928 KB
testcase_18 AC 52 ms
60,288 KB
testcase_19 AC 51 ms
59,392 KB
testcase_20 AC 51 ms
59,776 KB
testcase_21 AC 53 ms
60,416 KB
testcase_22 AC 54 ms
60,928 KB
testcase_23 AC 762 ms
64,256 KB
testcase_24 AC 490 ms
64,512 KB
testcase_25 AC 64 ms
65,024 KB
testcase_26 AC 63 ms
64,896 KB
testcase_27 AC 64 ms
65,280 KB
testcase_28 AC 63 ms
64,768 KB
testcase_29 AC 62 ms
64,384 KB
testcase_30 AC 210 ms
63,488 KB
testcase_31 AC 210 ms
63,744 KB
testcase_32 AC 372 ms
64,512 KB
testcase_33 AC 363 ms
64,768 KB
testcase_34 AC 546 ms
64,256 KB
testcase_35 AC 553 ms
64,768 KB
testcase_36 AC 761 ms
64,768 KB
testcase_37 AC 352 ms
62,848 KB
testcase_38 AC 520 ms
64,384 KB
testcase_39 AC 268 ms
63,360 KB
testcase_40 AC 285 ms
63,104 KB
testcase_41 AC 724 ms
65,024 KB
testcase_42 AC 633 ms
64,000 KB
testcase_43 AC 417 ms
70,784 KB
testcase_44 AC 165 ms
62,976 KB
testcase_45 AC 427 ms
63,360 KB
testcase_46 AC 621 ms
64,768 KB
testcase_47 AC 315 ms
63,744 KB
testcase_48 AC 428 ms
64,512 KB
testcase_49 AC 206 ms
64,000 KB
testcase_50 AC 277 ms
63,488 KB
testcase_51 AC 206 ms
62,720 KB
testcase_52 AC 348 ms
64,000 KB
testcase_53 AC 440 ms
64,000 KB
testcase_54 AC 268 ms
63,744 KB
testcase_55 AC 42 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