結果

問題 No.2093 Shio Ramen
ユーザー NPNP
提出日時 2024-03-18 16:11:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 74,972 KB
最終ジャッジ日時 2024-09-30 04:58:27
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,332 KB
testcase_01 AC 40 ms
52,704 KB
testcase_02 AC 39 ms
52,008 KB
testcase_03 AC 38 ms
53,404 KB
testcase_04 AC 38 ms
53,012 KB
testcase_05 AC 38 ms
52,308 KB
testcase_06 AC 38 ms
52,932 KB
testcase_07 AC 38 ms
53,872 KB
testcase_08 AC 38 ms
52,948 KB
testcase_09 AC 53 ms
64,232 KB
testcase_10 AC 71 ms
71,044 KB
testcase_11 AC 46 ms
62,100 KB
testcase_12 AC 58 ms
65,928 KB
testcase_13 AC 56 ms
64,388 KB
testcase_14 AC 59 ms
65,560 KB
testcase_15 AC 64 ms
68,668 KB
testcase_16 AC 53 ms
64,752 KB
testcase_17 AC 61 ms
67,512 KB
testcase_18 AC 73 ms
73,832 KB
testcase_19 AC 68 ms
72,668 KB
testcase_20 AC 64 ms
70,812 KB
testcase_21 AC 67 ms
70,732 KB
testcase_22 AC 66 ms
71,348 KB
testcase_23 AC 72 ms
74,972 KB
testcase_24 AC 71 ms
74,444 KB
testcase_25 AC 73 ms
74,788 KB
testcase_26 AC 75 ms
74,784 KB
testcase_27 AC 74 ms
74,572 KB
testcase_28 AC 74 ms
74,732 KB
testcase_29 AC 74 ms
74,256 KB
testcase_30 AC 75 ms
74,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def max_flavor(N, I, ramen):
    dp = [[0]*(I+1) for _ in range(N+1)]
    ramen.sort(key=lambda x: x[0])
    for i in range(N):
        si, ai = ramen[i]
        for j in range(I+1):
            if j < si:
                dp[i+1][j] = dp[i][j]
            else:
                dp[i+1][j] = max(dp[i][j], dp[i][j-si] + ai)
    return dp[N][I]

N, I = map(int, input().split())
ramen = []
for _ in range(N):
    s, a =map(int, input().split())
    ramen.append((s, a))
print(max_flavor(N, I, ramen))
0