結果

問題 No.2093 Shio Ramen
ユーザー tamatotamato
提出日時 2022-10-07 21:26:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-06-12 05:57:36
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 35 ms
52,188 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 33 ms
52,000 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 46 ms
63,872 KB
testcase_10 AC 56 ms
69,376 KB
testcase_11 AC 44 ms
61,056 KB
testcase_12 AC 47 ms
64,512 KB
testcase_13 AC 45 ms
63,744 KB
testcase_14 AC 48 ms
64,256 KB
testcase_15 AC 53 ms
68,480 KB
testcase_16 AC 48 ms
64,000 KB
testcase_17 AC 48 ms
65,920 KB
testcase_18 AC 60 ms
71,936 KB
testcase_19 AC 56 ms
69,248 KB
testcase_20 AC 52 ms
67,200 KB
testcase_21 AC 53 ms
67,968 KB
testcase_22 AC 55 ms
67,840 KB
testcase_23 AC 63 ms
73,216 KB
testcase_24 AC 59 ms
72,576 KB
testcase_25 AC 60 ms
72,320 KB
testcase_26 AC 62 ms
73,088 KB
testcase_27 AC 59 ms
73,088 KB
testcase_28 AC 58 ms
73,068 KB
testcase_29 AC 61 ms
72,576 KB
testcase_30 AC 61 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
inf = 10 ** 17


def main():
    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())
    SA = []
    for _ in range(N):
        SA.append(tuple(map(int, input().split())))

    dp = [-inf] * (K + 1)
    dp[0] = 0
    for s, a in SA:
        dp_new = [-inf] * (K + 1)
        for j in range(K + 1):
            dp_new[j] = max(dp_new[j], dp[j])
            if j + s <= K:
                dp_new[j + s] = max(dp_new[j + s], dp[j] + a)
        dp = dp_new
    ans = 0
    for j in range(K+1):
        ans = max(ans, dp[j])
    print(ans)


if __name__ == '__main__':
    main()
0