結果

問題 No.527 ナップサック容量問題
ユーザー AEnAEn
提出日時 2022-08-24 16:49:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 143,232 KB
最終ジャッジ日時 2024-10-12 01:26:14
合計ジャッジ時間 7,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,104 KB
testcase_01 AC 58 ms
65,536 KB
testcase_02 AC 50 ms
62,464 KB
testcase_03 AC 61 ms
66,816 KB
testcase_04 AC 47 ms
60,544 KB
testcase_05 AC 140 ms
95,872 KB
testcase_06 AC 232 ms
131,456 KB
testcase_07 AC 244 ms
118,388 KB
testcase_08 AC 148 ms
90,752 KB
testcase_09 AC 46 ms
59,904 KB
testcase_10 AC 294 ms
132,352 KB
testcase_11 AC 178 ms
111,488 KB
testcase_12 AC 142 ms
98,432 KB
testcase_13 AC 237 ms
133,888 KB
testcase_14 AC 119 ms
89,088 KB
testcase_15 AC 159 ms
104,448 KB
testcase_16 AC 59 ms
65,792 KB
testcase_17 AC 141 ms
96,768 KB
testcase_18 AC 151 ms
101,504 KB
testcase_19 AC 64 ms
68,104 KB
testcase_20 AC 123 ms
90,112 KB
testcase_21 AC 262 ms
143,232 KB
testcase_22 AC 192 ms
116,736 KB
testcase_23 AC 259 ms
141,184 KB
testcase_24 AC 93 ms
79,872 KB
testcase_25 AC 196 ms
115,328 KB
testcase_26 AC 175 ms
109,824 KB
testcase_27 AC 214 ms
110,208 KB
testcase_28 AC 160 ms
104,320 KB
testcase_29 AC 329 ms
142,336 KB
testcase_30 AC 66 ms
68,096 KB
testcase_31 AC 139 ms
95,744 KB
testcase_32 AC 159 ms
103,168 KB
testcase_33 AC 143 ms
97,280 KB
testcase_34 AC 162 ms
104,960 KB
testcase_35 AC 167 ms
107,392 KB
testcase_36 AC 55 ms
64,128 KB
testcase_37 AC 168 ms
97,792 KB
testcase_38 AC 161 ms
103,552 KB
testcase_39 AC 152 ms
101,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
item = [list(map(int, input().split())) for _ in range(N)]
V = int(input())
dp = [[0]*(10**5+1) for _ in range(N+1)]
sm_v, sm_w = 0, 0
for i in range(1, N+1):
    v, w = item[i-1]
    sm_v += v
    sm_w += w
    for j in range(10**5+1):
        if j>=w:
            dp[i][j] = max(dp[i-1][j-w]+v, dp[i][j])
        dp[i][j] = max(dp[i][j], dp[i-1][j])

for i in range(1,10**5+1):
    if dp[-1][i] == V:
        print(i)
        break
if dp[-1][sm_w] == V:
    print('inf')
else:
    for i in range(10**5, 0, -1):
        if dp[-1][i] == V:
            print(i)
            break
0