結果

問題 No.527 ナップサック容量問題
ユーザー ntudantuda
提出日時 2024-11-16 15:17:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-11-16 15:18:00
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,456 KB
testcase_03 AC 41 ms
58,368 KB
testcase_04 AC 37 ms
51,456 KB
testcase_05 AC 51 ms
71,424 KB
testcase_06 AC 76 ms
75,392 KB
testcase_07 AC 68 ms
75,776 KB
testcase_08 AC 49 ms
67,712 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 82 ms
75,648 KB
testcase_11 AC 63 ms
75,264 KB
testcase_12 AC 54 ms
73,472 KB
testcase_13 AC 75 ms
75,520 KB
testcase_14 AC 47 ms
67,200 KB
testcase_15 AC 72 ms
75,392 KB
testcase_16 AC 41 ms
57,984 KB
testcase_17 AC 51 ms
71,808 KB
testcase_18 AC 58 ms
75,264 KB
testcase_19 AC 45 ms
58,240 KB
testcase_20 AC 53 ms
68,864 KB
testcase_21 AC 84 ms
76,160 KB
testcase_22 AC 71 ms
76,032 KB
testcase_23 AC 88 ms
76,416 KB
testcase_24 AC 45 ms
62,080 KB
testcase_25 AC 66 ms
76,032 KB
testcase_26 AC 63 ms
75,776 KB
testcase_27 AC 64 ms
75,648 KB
testcase_28 AC 58 ms
75,520 KB
testcase_29 AC 92 ms
76,416 KB
testcase_30 AC 40 ms
58,496 KB
testcase_31 AC 55 ms
75,008 KB
testcase_32 AC 72 ms
75,392 KB
testcase_33 AC 54 ms
73,216 KB
testcase_34 AC 61 ms
75,520 KB
testcase_35 AC 43 ms
59,136 KB
testcase_36 AC 36 ms
51,584 KB
testcase_37 AC 43 ms
59,136 KB
testcase_38 AC 43 ms
59,264 KB
testcase_39 AC 43 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
VW = []
sumv = 0
INF = 10 ** 6
minw = INF
for i in range(N):
    v, w = map(int, input().split())
    sumv += v
    VW.append((v, w))
    minw = min(w,minw)
VW.sort(reverse = True)
V = int(input())
dp = [INF] * (sumv + 1)
dp[0] = 0
dp2 = [0] * (sumv + 1)
for v, w in VW:
    for i in reversed(range(sumv - v + 1)):
        dp[i+v] = min(dp[i+v],dp[i]+w)

y = 0
x = max(dp[V],1)
if dp[V+1:]:
    y = min(dp[V+1:]) - 1
print(x)
if x > y:
    print("inf")
else:
    print(y)
0