結果

問題 No.527 ナップサック容量問題
ユーザー 👑 KazunKazun
提出日時 2021-03-18 02:06:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-11-15 20:22:01
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,288 KB
testcase_01 AC 44 ms
60,288 KB
testcase_02 AC 45 ms
60,288 KB
testcase_03 AC 47 ms
61,696 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 70 ms
67,968 KB
testcase_06 AC 114 ms
70,656 KB
testcase_07 AC 88 ms
65,536 KB
testcase_08 AC 65 ms
67,200 KB
testcase_09 AC 39 ms
57,472 KB
testcase_10 AC 112 ms
66,944 KB
testcase_11 AC 87 ms
69,760 KB
testcase_12 AC 71 ms
68,352 KB
testcase_13 AC 120 ms
71,040 KB
testcase_14 AC 62 ms
64,896 KB
testcase_15 AC 76 ms
66,176 KB
testcase_16 AC 43 ms
60,672 KB
testcase_17 AC 70 ms
66,048 KB
testcase_18 AC 71 ms
65,152 KB
testcase_19 AC 48 ms
61,824 KB
testcase_20 AC 63 ms
65,280 KB
testcase_21 AC 129 ms
66,688 KB
testcase_22 AC 92 ms
65,920 KB
testcase_23 AC 127 ms
66,944 KB
testcase_24 AC 55 ms
63,744 KB
testcase_25 AC 86 ms
65,664 KB
testcase_26 AC 80 ms
66,560 KB
testcase_27 AC 81 ms
65,536 KB
testcase_28 AC 74 ms
65,536 KB
testcase_29 AC 124 ms
66,560 KB
testcase_30 AC 45 ms
61,568 KB
testcase_31 AC 59 ms
63,360 KB
testcase_32 AC 65 ms
63,360 KB
testcase_33 AC 62 ms
63,104 KB
testcase_34 AC 66 ms
63,360 KB
testcase_35 AC 81 ms
66,944 KB
testcase_36 AC 44 ms
61,184 KB
testcase_37 AC 69 ms
65,920 KB
testcase_38 AC 78 ms
65,920 KB
testcase_39 AC 77 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

inf=float("inf")
DP=[-inf]*(1000*N+1)
DP[0]=0

for _ in range(N):
    v,w=map(int,input().split())
    for x in range(1000*N,w-1,-1):
        DP[x]=max(DP[x],DP[x-w]+v)

for x in range(1,1000*N+1):
    DP[x]=max(DP[x],DP[x-1])

V=int(input())
T=[x for x in range(1,1000*N+1) if DP[x]==V]

print(min(T))
print(max(T) if max(DP)!=V else "inf")
0