結果

問題 No.527 ナップサック容量問題
ユーザー roarisroaris
提出日時 2019-08-26 16:31:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-11-07 19:01:16
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 58 ms
61,568 KB
testcase_04 AC 43 ms
52,096 KB
testcase_05 AC 77 ms
70,144 KB
testcase_06 AC 140 ms
90,368 KB
testcase_07 AC 84 ms
72,960 KB
testcase_08 AC 75 ms
68,224 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 128 ms
91,904 KB
testcase_11 AC 90 ms
76,672 KB
testcase_12 AC 81 ms
70,912 KB
testcase_13 AC 122 ms
89,344 KB
testcase_14 AC 67 ms
66,048 KB
testcase_15 AC 76 ms
69,248 KB
testcase_16 AC 56 ms
61,440 KB
testcase_17 AC 76 ms
69,632 KB
testcase_18 AC 86 ms
72,576 KB
testcase_19 AC 58 ms
61,824 KB
testcase_20 AC 64 ms
64,384 KB
testcase_21 AC 73 ms
68,864 KB
testcase_22 AC 67 ms
65,792 KB
testcase_23 AC 68 ms
66,816 KB
testcase_24 AC 61 ms
63,744 KB
testcase_25 AC 44 ms
52,096 KB
testcase_26 AC 62 ms
64,000 KB
testcase_27 AC 56 ms
61,824 KB
testcase_28 AC 43 ms
52,224 KB
testcase_29 AC 66 ms
65,024 KB
testcase_30 AC 59 ms
62,720 KB
testcase_31 AC 75 ms
68,352 KB
testcase_32 AC 94 ms
74,880 KB
testcase_33 AC 84 ms
70,784 KB
testcase_34 AC 77 ms
69,888 KB
testcase_35 AC 53 ms
60,416 KB
testcase_36 AC 43 ms
52,096 KB
testcase_37 AC 52 ms
59,776 KB
testcase_38 AC 54 ms
60,672 KB
testcase_39 AC 55 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
vw = [tuple(map(int, input().split())) for _ in range(N)]
V = int(input())
dp = [[10**18 for _ in range(V+2)] for _ in range(N+1)]
dp[0][0] = 0

for i in range(N):
    vi, wi = vw[i]
    
    for j in range(V+2):
        if j - vi >= 0:
            dp[i+1][j] = min(dp[i][j-vi] + wi, dp[i][j])
        else:
            dp[i+1][j] = min(dp[i][0] + wi, dp[i][j])

minV = max(1, dp[N][V])
maxV = dp[N][V+1]

if maxV == 10 ** 18:
    maxV = 'inf'
else:
    maxV -= 1

print(minV)
print(maxV)
0