結果

問題 No.2093 Shio Ramen
ユーザー first_vilfirst_vil
提出日時 2022-10-08 15:05:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 1,429 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,208 KB
最終ジャッジ日時 2024-06-22 18:13:43
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,032 KB
testcase_01 AC 34 ms
53,472 KB
testcase_02 AC 36 ms
53,436 KB
testcase_03 AC 36 ms
54,068 KB
testcase_04 AC 35 ms
53,652 KB
testcase_05 AC 36 ms
53,344 KB
testcase_06 AC 36 ms
53,368 KB
testcase_07 AC 38 ms
53,748 KB
testcase_08 AC 36 ms
53,200 KB
testcase_09 AC 53 ms
66,892 KB
testcase_10 AC 62 ms
68,432 KB
testcase_11 AC 55 ms
66,524 KB
testcase_12 AC 54 ms
67,360 KB
testcase_13 AC 50 ms
65,184 KB
testcase_14 AC 52 ms
64,668 KB
testcase_15 AC 68 ms
68,436 KB
testcase_16 AC 58 ms
67,984 KB
testcase_17 AC 60 ms
68,156 KB
testcase_18 AC 72 ms
70,148 KB
testcase_19 AC 68 ms
68,008 KB
testcase_20 AC 62 ms
69,504 KB
testcase_21 AC 64 ms
69,312 KB
testcase_22 AC 61 ms
68,792 KB
testcase_23 AC 68 ms
69,680 KB
testcase_24 AC 71 ms
69,224 KB
testcase_25 AC 67 ms
68,940 KB
testcase_26 AC 70 ms
71,144 KB
testcase_27 AC 68 ms
68,404 KB
testcase_28 AC 71 ms
71,208 KB
testcase_29 AC 70 ms
69,444 KB
testcase_30 AC 66 ms
69,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
# mod = int(1e9 + 7)
mod = 998244353


def chmax(a, v, *args):
    b = a
    for i in args[:-1]:
        b = b[i]
    if b[args[-1]] < v:
        b[args[-1]] = v


N, I = mi()
s = [0] * N
a = [0] * N
for i in range(N):
    s[i], a[i] = mi()

dp = [-INF] * (I + 1)
dp[0] = 0
for i in range(N):
    for j in range(0, I + 1)[::-1]:
        if j + s[i] <= I:
            chmax(dp, dp[j] + a[i], j + s[i])
print(max(dp))
0