結果

問題 No.288 貯金箱の仕事
ユーザー maspymaspy
提出日時 2020-03-31 14:02:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-06-24 10:38:23
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,496 KB
testcase_01 AC 45 ms
58,880 KB
testcase_02 AC 46 ms
57,984 KB
testcase_03 AC 43 ms
57,600 KB
testcase_04 AC 44 ms
58,496 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 53 ms
59,136 KB
testcase_08 AC 48 ms
59,776 KB
testcase_09 AC 50 ms
58,880 KB
testcase_10 AC 52 ms
59,392 KB
testcase_11 AC 48 ms
59,136 KB
testcase_12 AC 51 ms
59,136 KB
testcase_13 AC 52 ms
59,392 KB
testcase_14 AC 50 ms
59,520 KB
testcase_15 AC 51 ms
59,392 KB
testcase_16 AC 52 ms
59,648 KB
testcase_17 AC 48 ms
59,008 KB
testcase_18 AC 47 ms
58,880 KB
testcase_19 AC 48 ms
59,136 KB
testcase_20 AC 47 ms
59,500 KB
testcase_21 AC 47 ms
59,476 KB
testcase_22 AC 50 ms
58,880 KB
testcase_23 AC 119 ms
60,800 KB
testcase_24 AC 81 ms
60,288 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 47 ms
59,008 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 62 ms
59,136 KB
testcase_31 AC 61 ms
59,520 KB
testcase_32 AC 82 ms
60,800 KB
testcase_33 AC 83 ms
60,672 KB
testcase_34 AC 103 ms
60,032 KB
testcase_35 AC 103 ms
60,544 KB
testcase_36 AC 124 ms
61,056 KB
testcase_37 AC 64 ms
60,160 KB
testcase_38 AC 98 ms
60,416 KB
testcase_39 AC 69 ms
59,904 KB
testcase_40 AC 71 ms
59,392 KB
testcase_41 AC 119 ms
60,672 KB
testcase_42 AC 110 ms
60,544 KB
testcase_43 AC 89 ms
60,416 KB
testcase_44 AC 75 ms
60,800 KB
testcase_45 AC 103 ms
60,288 KB
testcase_46 AC 109 ms
60,928 KB
testcase_47 AC 94 ms
60,672 KB
testcase_48 AC 92 ms
60,416 KB
testcase_49 AC 72 ms
59,776 KB
testcase_50 AC 88 ms
60,160 KB
testcase_51 AC 70 ms
59,520 KB
testcase_52 AC 82 ms
59,904 KB
testcase_53 AC 94 ms
60,416 KB
testcase_54 AC 79 ms
60,416 KB
testcase_55 AC 46 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, M = map(int, readline().split())
A = tuple(map(int, readline().split()))
K = tuple(map(int, readline().split()))

M = sum(a * k for a, k in zip(A, K)) - M
if M < 0:
    print(-1)
    exit()

U = 26000
INF = 10 ** 18
dp = [INF] * U
dp[0] = 0
for a in A:
    for i in range(a, U):
        x = dp[i - a] + 1
        if dp[i] > x:
            dp[i] = x

n = A[-1]
k = max(0, (M - U) // n + 1)
M -= k * n
if dp[M] > 10 ** 17:
    print(-1)
else:
    print(dp[M] + k)
0