結果

問題 No.2093 Shio Ramen
ユーザー lloyzlloyz
提出日時 2022-10-07 21:59:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 84,636 KB
最終ジャッジ日時 2024-06-12 18:18:59
合計ジャッジ時間 2,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,224 KB
testcase_01 AC 34 ms
53,256 KB
testcase_02 AC 31 ms
52,792 KB
testcase_03 AC 31 ms
52,596 KB
testcase_04 AC 30 ms
53,068 KB
testcase_05 AC 30 ms
53,416 KB
testcase_06 AC 33 ms
51,812 KB
testcase_07 AC 30 ms
54,108 KB
testcase_08 AC 31 ms
51,996 KB
testcase_09 AC 52 ms
69,492 KB
testcase_10 AC 71 ms
73,684 KB
testcase_11 AC 45 ms
64,016 KB
testcase_12 AC 52 ms
69,656 KB
testcase_13 AC 50 ms
67,944 KB
testcase_14 AC 52 ms
70,264 KB
testcase_15 AC 63 ms
74,500 KB
testcase_16 AC 54 ms
69,204 KB
testcase_17 AC 55 ms
71,648 KB
testcase_18 AC 80 ms
84,028 KB
testcase_19 AC 64 ms
74,284 KB
testcase_20 AC 63 ms
73,544 KB
testcase_21 AC 69 ms
73,940 KB
testcase_22 AC 67 ms
74,044 KB
testcase_23 AC 84 ms
84,048 KB
testcase_24 AC 85 ms
84,308 KB
testcase_25 AC 84 ms
84,336 KB
testcase_26 AC 83 ms
84,408 KB
testcase_27 AC 81 ms
84,312 KB
testcase_28 AC 78 ms
84,076 KB
testcase_29 AC 77 ms
84,636 KB
testcase_30 AC 79 ms
84,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, i = map(int, input().split())
DP = [[-1 for _ in range(i + 1)] for _ in range(n + 1)]
DP[0][0] = 0
for j in range(n):
    s, a = map(int, input().split())
    for x in range(i + 1):
        if DP[j][x] != -1:
            DP[j + 1][x] = max(DP[j + 1][x], DP[j][x])
            if x + s <= i:
                DP[j + 1][x + s] = max(DP[j + 1][x + s], DP[j][x] + a)
print(max(DP[n]))
0