結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー neterukunneterukun
提出日時 2020-01-01 21:41:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,766 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 470,076 KB
最終ジャッジ日時 2024-11-22 17:12:07
合計ジャッジ時間 40,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,308 KB
testcase_01 AC 46 ms
52,992 KB
testcase_02 AC 64 ms
64,996 KB
testcase_03 AC 49 ms
60,176 KB
testcase_04 AC 40 ms
52,712 KB
testcase_05 AC 38 ms
53,124 KB
testcase_06 AC 56 ms
65,152 KB
testcase_07 AC 40 ms
52,896 KB
testcase_08 AC 51 ms
63,068 KB
testcase_09 AC 104 ms
84,884 KB
testcase_10 AC 79 ms
74,252 KB
testcase_11 AC 86 ms
81,332 KB
testcase_12 AC 342 ms
154,368 KB
testcase_13 AC 1,092 ms
351,152 KB
testcase_14 AC 226 ms
121,144 KB
testcase_15 AC 217 ms
124,484 KB
testcase_16 AC 297 ms
148,664 KB
testcase_17 AC 335 ms
166,092 KB
testcase_18 AC 39 ms
52,884 KB
testcase_19 AC 39 ms
52,992 KB
testcase_20 AC 40 ms
52,868 KB
testcase_21 AC 78 ms
73,348 KB
testcase_22 AC 68 ms
70,248 KB
testcase_23 AC 72 ms
71,508 KB
testcase_24 AC 1,394 ms
469,792 KB
testcase_25 AC 1,440 ms
469,708 KB
testcase_26 AC 1,467 ms
469,672 KB
testcase_27 AC 1,463 ms
469,512 KB
testcase_28 AC 1,120 ms
469,004 KB
testcase_29 AC 1,140 ms
469,140 KB
testcase_30 AC 39 ms
54,036 KB
testcase_31 AC 39 ms
52,468 KB
testcase_32 AC 69 ms
71,280 KB
testcase_33 AC 80 ms
74,216 KB
testcase_34 AC 97 ms
83,480 KB
testcase_35 AC 1,766 ms
469,440 KB
testcase_36 AC 1,452 ms
469,872 KB
testcase_37 AC 1,529 ms
469,372 KB
testcase_38 AC 1,625 ms
469,988 KB
testcase_39 AC 1,560 ms
470,076 KB
testcase_40 AC 1,563 ms
469,400 KB
testcase_41 AC 1,561 ms
469,468 KB
testcase_42 AC 1,170 ms
469,808 KB
testcase_43 AC 1,144 ms
469,564 KB
testcase_44 AC 1,520 ms
469,376 KB
testcase_45 AC 1,145 ms
469,724 KB
testcase_46 AC 1,199 ms
469,012 KB
testcase_47 AC 1,143 ms
469,168 KB
testcase_48 AC 1,311 ms
469,196 KB
testcase_49 AC 1,295 ms
469,240 KB
testcase_50 AC 1,132 ms
469,732 KB
testcase_51 AC 1,124 ms
469,292 KB
testcase_52 AC 1,232 ms
392,644 KB
testcase_53 AC 1,478 ms
469,600 KB
testcase_54 AC 803 ms
469,284 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 _ in range(2)]

for i in range(n):
    cost, val = info[i]
    for j in range(k+1):
        # i番目をもらわない
        dp[0][i+1][j] = dp[0][i][j]
        dp[1][i+1][j] = dp[1][i][j]
        # 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])

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