結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー neterukunneterukun
提出日時 2020-01-01 21:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,476 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 470,048 KB
最終ジャッジ日時 2024-05-02 05:54:55
合計ジャッジ時間 36,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 47 ms
65,024 KB
testcase_03 AC 40 ms
60,416 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 32 ms
51,840 KB
testcase_06 AC 52 ms
66,048 KB
testcase_07 AC 33 ms
52,480 KB
testcase_08 AC 44 ms
62,464 KB
testcase_09 AC 96 ms
84,352 KB
testcase_10 AC 82 ms
80,512 KB
testcase_11 AC 78 ms
80,896 KB
testcase_12 AC 330 ms
153,856 KB
testcase_13 AC 1,053 ms
351,232 KB
testcase_14 AC 225 ms
121,020 KB
testcase_15 AC 215 ms
124,416 KB
testcase_16 AC 276 ms
149,248 KB
testcase_17 AC 328 ms
166,248 KB
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 32 ms
52,864 KB
testcase_20 AC 32 ms
52,608 KB
testcase_21 AC 70 ms
73,984 KB
testcase_22 AC 62 ms
70,784 KB
testcase_23 AC 66 ms
71,680 KB
testcase_24 AC 1,335 ms
469,992 KB
testcase_25 AC 1,365 ms
469,888 KB
testcase_26 AC 1,399 ms
468,992 KB
testcase_27 AC 1,406 ms
469,632 KB
testcase_28 AC 1,079 ms
468,864 KB
testcase_29 AC 1,098 ms
469,120 KB
testcase_30 AC 35 ms
52,352 KB
testcase_31 AC 35 ms
52,096 KB
testcase_32 AC 65 ms
71,168 KB
testcase_33 AC 77 ms
79,360 KB
testcase_34 AC 89 ms
83,456 KB
testcase_35 AC 1,131 ms
469,376 KB
testcase_36 AC 1,146 ms
469,632 KB
testcase_37 AC 1,103 ms
469,864 KB
testcase_38 AC 1,463 ms
469,760 KB
testcase_39 AC 1,437 ms
469,888 KB
testcase_40 AC 1,156 ms
469,812 KB
testcase_41 AC 1,447 ms
470,048 KB
testcase_42 AC 1,129 ms
469,656 KB
testcase_43 AC 1,127 ms
469,504 KB
testcase_44 AC 1,476 ms
469,568 KB
testcase_45 AC 1,136 ms
469,888 KB
testcase_46 AC 1,164 ms
469,004 KB
testcase_47 AC 1,157 ms
469,080 KB
testcase_48 AC 1,089 ms
469,120 KB
testcase_49 AC 1,115 ms
468,992 KB
testcase_50 AC 1,092 ms
469,504 KB
testcase_51 AC 1,108 ms
469,696 KB
testcase_52 AC 1,119 ms
392,408 KB
testcase_53 AC 1,287 ms
469,376 KB
testcase_54 AC 783 ms
469,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
info = [list(map(int, input().split())) for i in range(n)]
info = sorted(info, reverse = True)

dp = [[[0]*(k+1) for _ in range(n+1)] for i in range(2)]

for i in range(n):
    cost, val = info[i]
    for j in range(k+1):
        # i番目を無料としてもらう
        if dp[1][i][j] != 0:
            dp[0][i+1][j] = max(dp[1][i][j] + val, dp[0][i+1][j])
        # i番目をお金を払ってもらう
        if j - cost >= 0:
            dp[1][i+1][j] = max(dp[0][i][j - cost] + val, dp[1][i+1][j])
        # i番目をもらわない
        dp[0][i+1][j] = max(dp[0][i][j], dp[0][i+1][j])
        dp[1][i+1][j] = max(dp[1][i][j], dp[1][i+1][j])

print(max(dp[0][n][k], dp[1][n][k]))
0