結果

問題 No.527 ナップサック容量問題
ユーザー titiatitia
提出日時 2024-02-02 04:57:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-09-28 10:34:03
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,648 KB
testcase_01 AC 46 ms
60,032 KB
testcase_02 AC 46 ms
59,648 KB
testcase_03 AC 48 ms
61,440 KB
testcase_04 AC 43 ms
58,624 KB
testcase_05 AC 69 ms
62,208 KB
testcase_06 AC 93 ms
62,464 KB
testcase_07 AC 80 ms
61,952 KB
testcase_08 AC 64 ms
62,080 KB
testcase_09 AC 43 ms
58,880 KB
testcase_10 AC 91 ms
62,080 KB
testcase_11 AC 82 ms
62,208 KB
testcase_12 AC 73 ms
62,592 KB
testcase_13 AC 96 ms
62,720 KB
testcase_14 AC 62 ms
62,080 KB
testcase_15 AC 72 ms
61,568 KB
testcase_16 AC 48 ms
60,800 KB
testcase_17 AC 69 ms
61,568 KB
testcase_18 AC 74 ms
61,568 KB
testcase_19 AC 49 ms
61,696 KB
testcase_20 AC 64 ms
61,312 KB
testcase_21 AC 100 ms
61,440 KB
testcase_22 AC 87 ms
61,440 KB
testcase_23 AC 98 ms
61,952 KB
testcase_24 AC 56 ms
61,312 KB
testcase_25 AC 77 ms
61,568 KB
testcase_26 AC 74 ms
61,440 KB
testcase_27 AC 77 ms
61,184 KB
testcase_28 AC 73 ms
62,080 KB
testcase_29 AC 99 ms
61,568 KB
testcase_30 AC 47 ms
60,288 KB
testcase_31 AC 65 ms
61,184 KB
testcase_32 AC 71 ms
61,056 KB
testcase_33 AC 68 ms
60,928 KB
testcase_34 AC 74 ms
61,312 KB
testcase_35 AC 75 ms
61,952 KB
testcase_36 AC 46 ms
60,544 KB
testcase_37 AC 65 ms
62,592 KB
testcase_38 AC 74 ms
61,568 KB
testcase_39 AC 73 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=[list(map(int,input().split())) for i in range(N)]
V=int(input())

DP=[0]*100002

for v,w in L:
    for i in range(100001,-1,-1):
        if i+w<100002:
            DP[i+w]=max(DP[i+w],DP[i]+v)

flag=0
for i in range(1,100002):
    if flag==0 and DP[i]==V:
        print(i)
        flag=1
    if flag==1:
        if DP[i]!=V:
            print(i-1)
            break
else:
    print("inf")
    
0