結果

問題 No.2093 Shio Ramen
ユーザー flippergoflippergo
提出日時 2024-09-24 11:33:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 84,868 KB
最終ジャッジ日時 2024-09-24 11:33:28
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,572 KB
testcase_01 AC 38 ms
54,268 KB
testcase_02 AC 38 ms
52,152 KB
testcase_03 AC 39 ms
52,436 KB
testcase_04 AC 38 ms
53,304 KB
testcase_05 AC 39 ms
52,400 KB
testcase_06 AC 40 ms
53,352 KB
testcase_07 AC 39 ms
52,496 KB
testcase_08 AC 38 ms
53,488 KB
testcase_09 AC 60 ms
66,004 KB
testcase_10 AC 88 ms
73,252 KB
testcase_11 AC 51 ms
62,292 KB
testcase_12 AC 70 ms
67,624 KB
testcase_13 AC 64 ms
68,748 KB
testcase_14 AC 66 ms
69,088 KB
testcase_15 AC 77 ms
71,972 KB
testcase_16 AC 60 ms
65,336 KB
testcase_17 AC 71 ms
71,488 KB
testcase_18 AC 104 ms
84,000 KB
testcase_19 AC 94 ms
74,464 KB
testcase_20 AC 78 ms
73,740 KB
testcase_21 AC 81 ms
74,212 KB
testcase_22 AC 79 ms
73,380 KB
testcase_23 AC 106 ms
84,472 KB
testcase_24 AC 99 ms
84,036 KB
testcase_25 AC 101 ms
84,588 KB
testcase_26 AC 105 ms
84,336 KB
testcase_27 AC 101 ms
84,212 KB
testcase_28 AC 105 ms
84,588 KB
testcase_29 AC 101 ms
84,364 KB
testcase_30 AC 105 ms
84,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,I = map(int,input().split())
A = [0]+[list(map(int,input().split())) for _ in range(N)]
dp = [[0 for _ in range(I+1)] for _ in range(N+1)]
for j in range(I+1):
    if j>=A[1][0]:
        dp[1][j] = A[1][1]
for i in range(2,N+1):
    for j in range(I+1):
        dp[i][j] = dp[i-1][j]
        if j>=A[i][0]:
            dp[i][j] = max(dp[i][j],dp[i-1][j-A[i][0]]+A[i][1])
print(dp[N][I])
0