結果

問題 No.1947 質より種類数
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-10 19:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 272,640 KB
最終ジャッジ日時 2024-05-05 07:52:55
合計ジャッジ時間 12,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 62 ms
67,584 KB
testcase_05 AC 61 ms
67,328 KB
testcase_06 AC 61 ms
67,456 KB
testcase_07 AC 63 ms
67,328 KB
testcase_08 AC 68 ms
69,248 KB
testcase_09 AC 84 ms
72,576 KB
testcase_10 AC 77 ms
70,528 KB
testcase_11 AC 133 ms
86,656 KB
testcase_12 AC 95 ms
74,112 KB
testcase_13 AC 73 ms
70,016 KB
testcase_14 AC 344 ms
131,552 KB
testcase_15 AC 222 ms
104,576 KB
testcase_16 AC 527 ms
156,672 KB
testcase_17 AC 637 ms
180,252 KB
testcase_18 AC 989 ms
261,888 KB
testcase_19 AC 863 ms
238,208 KB
testcase_20 AC 677 ms
197,820 KB
testcase_21 AC 820 ms
220,340 KB
testcase_22 AC 105 ms
84,228 KB
testcase_23 AC 393 ms
139,136 KB
testcase_24 AC 61 ms
66,560 KB
testcase_25 AC 62 ms
67,200 KB
testcase_26 AC 57 ms
66,048 KB
testcase_27 AC 61 ms
66,560 KB
testcase_28 AC 64 ms
68,352 KB
testcase_29 AC 841 ms
272,640 KB
testcase_30 AC 769 ms
272,408 KB
testcase_31 AC 36 ms
52,352 KB
testcase_32 AC 36 ms
51,840 KB
testcase_33 AC 47 ms
61,568 KB
testcase_34 AC 622 ms
272,384 KB
testcase_35 AC 348 ms
272,384 KB
testcase_36 AC 760 ms
272,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,C=map(int,input().split())

dp=[[-1]*(V+1) for i in range(N+1)]
dp[0][0] = 0

for i in range(N):
    v,w=map(int,input().split())
    for j in range(V+1):
        if dp[i][j] == -1:
            continue
        if j + v <= V:
            dp[i][j+v] = max(dp[i][j+v],dp[i][j] + w)
            dp[i+1][j+v] = max(dp[i][j] + w + C , dp[i+1][j+v])
        dp[i+1][j] = max(dp[i][j],dp[i+1][j]) 
        
print(max(dp[-1]))

    
0