結果

問題 No.527 ナップサック容量問題
ユーザー h_nosonh_noson
提出日時 2017-06-09 22:49:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 463 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-22 15:39:28
合計ジャッジ時間 25,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
12,288 KB
testcase_01 AC 142 ms
12,288 KB
testcase_02 AC 142 ms
12,288 KB
testcase_03 AC 148 ms
12,160 KB
testcase_04 AC 146 ms
12,288 KB
testcase_05 AC 763 ms
12,928 KB
testcase_06 TLE -
testcase_07 AC 1,010 ms
12,928 KB
testcase_08 AC 604 ms
12,672 KB
testcase_09 AC 144 ms
12,288 KB
testcase_10 TLE -
testcase_11 AC 1,331 ms
13,056 KB
testcase_12 AC 858 ms
12,928 KB
testcase_13 TLE -
testcase_14 AC 414 ms
12,672 KB
testcase_15 AC 712 ms
12,672 KB
testcase_16 AC 156 ms
12,288 KB
testcase_17 AC 698 ms
13,056 KB
testcase_18 AC 955 ms
13,056 KB
testcase_19 AC 147 ms
12,416 KB
testcase_20 AC 227 ms
12,416 KB
testcase_21 AC 671 ms
12,672 KB
testcase_22 AC 352 ms
12,544 KB
testcase_23 AC 427 ms
12,416 KB
testcase_24 AC 191 ms
12,416 KB
testcase_25 AC 142 ms
12,288 KB
testcase_26 AC 217 ms
12,416 KB
testcase_27 AC 168 ms
12,416 KB
testcase_28 AC 143 ms
12,288 KB
testcase_29 AC 254 ms
12,416 KB
testcase_30 AC 164 ms
12,288 KB
testcase_31 AC 590 ms
12,288 KB
testcase_32 AC 1,135 ms
12,288 KB
testcase_33 AC 794 ms
12,160 KB
testcase_34 AC 732 ms
12,160 KB
testcase_35 AC 145 ms
12,288 KB
testcase_36 AC 144 ms
12,160 KB
testcase_37 AC 148 ms
12,288 KB
testcase_38 AC 145 ms
12,160 KB
testcase_39 AC 147 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9

N = int(input())
mx = 0
mn = INF
v = []
w = []
for i in range(N):
    x, y = map(int,input().split(' '))
    v.append(x)
    w.append(y)
V = int(input())
dp = [0] * (200000)
for i in range(1,200000):
    dp[i] = INF
for i in range(N):
    for j in range(V+1)[::-1]:
        dp[j+v[i]] = min(dp[j+v[i]],dp[j] + w[i])
print(max(1,dp[V]))
mx = INF
for i in range(V+1,200000):
    mx = min(mx,dp[i])
if mx == INF:
    print("inf")
else:
    print(mx-1)
0