結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー neterukunneterukun
提出日時 2020-01-01 21:32:21
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 709 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 1,698,476 KB
最終ジャッジ日時 2024-11-22 17:10:21
合計ジャッジ時間 83,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 AC 124 ms
91,860 KB
testcase_22 AC 98 ms
85,420 KB
testcase_23 AC 115 ms
91,796 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 44 ms
52,812 KB
testcase_31 AC 44 ms
52,480 KB
testcase_32 AC 115 ms
87,812 KB
testcase_33 AC 136 ms
92,024 KB
testcase_34 AC 203 ms
115,160 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 MLE -
権限があれば一括ダウンロードができます

ソースコード

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]*2 for _ in range(k+1)] for i in range(n+1)]

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

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