結果

問題 No.2093 Shio Ramen
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-10-07 21:29:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-06-12 06:09:23
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,096 KB
testcase_01 AC 45 ms
52,096 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 68 ms
66,688 KB
testcase_10 AC 79 ms
71,424 KB
testcase_11 AC 56 ms
61,440 KB
testcase_12 AC 69 ms
66,560 KB
testcase_13 AC 67 ms
66,304 KB
testcase_14 AC 69 ms
66,688 KB
testcase_15 AC 78 ms
70,144 KB
testcase_16 AC 71 ms
67,072 KB
testcase_17 AC 70 ms
67,328 KB
testcase_18 AC 86 ms
73,344 KB
testcase_19 AC 79 ms
70,912 KB
testcase_20 AC 72 ms
69,120 KB
testcase_21 AC 77 ms
69,760 KB
testcase_22 AC 76 ms
69,888 KB
testcase_23 AC 84 ms
73,984 KB
testcase_24 AC 86 ms
73,856 KB
testcase_25 AC 86 ms
73,728 KB
testcase_26 AC 85 ms
73,984 KB
testcase_27 AC 85 ms
73,984 KB
testcase_28 AC 87 ms
74,240 KB
testcase_29 AC 86 ms
74,112 KB
testcase_30 AC 85 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,I = map(int,input().split())
inf = 10**2
dp = [-inf] * (I+1)
dp[0] = 0
for i in range(n):
    n_dp = [-inf] * (I+1)
    s,a = map(int,input().split())
    for j in range(I+1):
        n_dp[j] = max(n_dp[j],dp[j])
        if j + s <= I:
            n_dp[j+s] = max(n_dp[j+s],dp[j] + a)
    dp = n_dp
import sys
print(max(dp))
0