結果

問題 No.527 ナップサック容量問題
ユーザー convexineqconvexineq
提出日時 2021-02-24 01:18:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-09-22 20:29:01
合計ジャッジ時間 4,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,156 KB
testcase_01 AC 45 ms
60,732 KB
testcase_02 AC 42 ms
59,688 KB
testcase_03 AC 48 ms
62,220 KB
testcase_04 AC 41 ms
60,280 KB
testcase_05 AC 65 ms
61,856 KB
testcase_06 AC 76 ms
61,044 KB
testcase_07 AC 71 ms
62,300 KB
testcase_08 AC 57 ms
61,020 KB
testcase_09 AC 41 ms
58,780 KB
testcase_10 AC 77 ms
62,680 KB
testcase_11 AC 65 ms
62,184 KB
testcase_12 AC 59 ms
60,896 KB
testcase_13 AC 78 ms
61,688 KB
testcase_14 AC 57 ms
61,516 KB
testcase_15 AC 72 ms
62,628 KB
testcase_16 AC 48 ms
60,788 KB
testcase_17 AC 67 ms
62,776 KB
testcase_18 AC 70 ms
62,064 KB
testcase_19 AC 46 ms
61,272 KB
testcase_20 AC 62 ms
61,632 KB
testcase_21 AC 83 ms
62,504 KB
testcase_22 AC 68 ms
61,628 KB
testcase_23 AC 81 ms
62,484 KB
testcase_24 AC 52 ms
61,864 KB
testcase_25 AC 80 ms
62,088 KB
testcase_26 AC 66 ms
62,728 KB
testcase_27 AC 66 ms
62,024 KB
testcase_28 AC 65 ms
62,380 KB
testcase_29 AC 84 ms
63,052 KB
testcase_30 AC 45 ms
60,188 KB
testcase_31 AC 60 ms
62,156 KB
testcase_32 AC 63 ms
61,288 KB
testcase_33 AC 60 ms
61,756 KB
testcase_34 AC 64 ms
62,540 KB
testcase_35 AC 67 ms
62,608 KB
testcase_36 AC 46 ms
60,720 KB
testcase_37 AC 61 ms
63,232 KB
testcase_38 AC 64 ms
62,428 KB
testcase_39 AC 62 ms
61,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
N = 10**5+1
dp = [0]*N
for _ in range(n):
    v,w = map(int,input().split())
    for i in range(w,N)[::-1]: dp[i] = max(dp[i],dp[i-w]+v)
V = int(input())
print(max(1,dp.index(V)))
print("inf" if dp[-1]==V else N - dp[::-1].index(V) - 1)
0