結果

問題 No.527 ナップサック容量問題
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-02 13:24:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 75,708 KB
最終ジャッジ日時 2024-07-16 06:42:34
合計ジャッジ時間 3,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,172 KB
testcase_01 AC 35 ms
52,636 KB
testcase_02 AC 36 ms
53,772 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,576 KB
testcase_05 AC 52 ms
73,548 KB
testcase_06 AC 73 ms
75,252 KB
testcase_07 WA -
testcase_08 AC 47 ms
69,052 KB
testcase_09 AC 36 ms
52,520 KB
testcase_10 WA -
testcase_11 AC 61 ms
75,084 KB
testcase_12 AC 57 ms
75,708 KB
testcase_13 AC 72 ms
75,272 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
52,772 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 38 ms
52,620 KB
testcase_29 WA -
testcase_30 AC 44 ms
60,620 KB
testcase_31 AC 51 ms
70,264 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 44 ms
61,056 KB
testcase_36 AC 36 ms
52,268 KB
testcase_37 AC 42 ms
60,976 KB
testcase_38 AC 42 ms
60,752 KB
testcase_39 AC 42 ms
60,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
V = []
W = []
for i in range(n):
    v, w = map(int, input().split())
    V.append(v)
    W.append(w)
u = int(input())
if u == 0:
    print(1)
    print(min(W)-1)
    exit()
INF = 10**18
dp = [INF]*(u+2)
dp[0] = 0
for v, w in zip(V, W):
    for i in reversed(range(u+2)):
        if i+v <= u+1:
            dp[i+v] = min(dp[i+v], dp[i]+w)
if dp[u+1] != INF:
    print(dp[u])
    print(dp[u+1]-1)
else:
    print(dp[u])
    print('inf')
0