結果

問題 No.2093 Shio Ramen
ユーザー Akijin_007Akijin_007
提出日時 2022-10-07 22:47:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 76,508 KB
最終ジャッジ日時 2024-06-12 20:07:10
合計ジャッジ時間 2,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,576 KB
testcase_01 AC 32 ms
52,132 KB
testcase_02 AC 31 ms
52,636 KB
testcase_03 AC 31 ms
52,140 KB
testcase_04 AC 33 ms
52,820 KB
testcase_05 AC 33 ms
53,012 KB
testcase_06 AC 33 ms
52,736 KB
testcase_07 AC 33 ms
52,344 KB
testcase_08 AC 33 ms
52,752 KB
testcase_09 AC 50 ms
67,368 KB
testcase_10 AC 68 ms
75,892 KB
testcase_11 AC 44 ms
63,076 KB
testcase_12 AC 54 ms
67,800 KB
testcase_13 AC 57 ms
67,388 KB
testcase_14 AC 59 ms
67,996 KB
testcase_15 AC 65 ms
74,460 KB
testcase_16 AC 47 ms
68,192 KB
testcase_17 AC 54 ms
71,980 KB
testcase_18 AC 66 ms
76,420 KB
testcase_19 AC 68 ms
76,320 KB
testcase_20 AC 58 ms
73,836 KB
testcase_21 AC 66 ms
76,256 KB
testcase_22 AC 63 ms
76,088 KB
testcase_23 AC 66 ms
76,084 KB
testcase_24 AC 67 ms
76,264 KB
testcase_25 AC 67 ms
76,392 KB
testcase_26 AC 68 ms
76,220 KB
testcase_27 AC 68 ms
76,016 KB
testcase_28 AC 68 ms
76,092 KB
testcase_29 AC 69 ms
76,304 KB
testcase_30 AC 67 ms
76,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, I = map(int, input().split())

S = [0] * N
for i in range(N):
    S[i] = list(map(int, input().split()))

dp = [0] * (I+1)

for i in range(N):
    ndp = [0] * (I+1)
    s, a = S[i]
    for j in range(I+1):
        ndp[j] = max(dp[j], ndp[j])
        if j + s <= I:
            ndp[j+s] = max(dp[j] + a, ndp[j+s])
    dp = list(ndp)

# print(dp)
ans = max(dp)
print(dp[I])
0