結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,528 KB
testcase_01 AC 41 ms
52,760 KB
testcase_02 AC 60 ms
65,256 KB
testcase_03 AC 45 ms
62,040 KB
testcase_04 AC 37 ms
53,240 KB
testcase_05 AC 36 ms
52,820 KB
testcase_06 AC 57 ms
66,344 KB
testcase_07 AC 39 ms
52,896 KB
testcase_08 AC 51 ms
64,240 KB
testcase_09 AC 100 ms
84,740 KB
testcase_10 AC 88 ms
80,816 KB
testcase_11 AC 84 ms
81,436 KB
testcase_12 AC 337 ms
154,356 KB
testcase_13 AC 1,089 ms
350,812 KB
testcase_14 AC 228 ms
120,952 KB
testcase_15 AC 225 ms
124,456 KB
testcase_16 AC 306 ms
148,884 KB
testcase_17 AC 353 ms
166,244 KB
testcase_18 AC 40 ms
53,476 KB
testcase_19 AC 39 ms
53,148 KB
testcase_20 AC 39 ms
53,520 KB
testcase_21 AC 82 ms
74,292 KB
testcase_22 AC 71 ms
71,252 KB
testcase_23 AC 76 ms
72,860 KB
testcase_24 AC 1,454 ms
469,904 KB
testcase_25 AC 1,489 ms
469,456 KB
testcase_26 AC 1,509 ms
469,152 KB
testcase_27 AC 1,499 ms
469,872 KB
testcase_28 AC 1,181 ms
469,196 KB
testcase_29 AC 1,239 ms
469,624 KB
testcase_30 AC 38 ms
53,440 KB
testcase_31 AC 38 ms
53,484 KB
testcase_32 AC 72 ms
73,260 KB
testcase_33 AC 90 ms
79,428 KB
testcase_34 AC 99 ms
83,420 KB
testcase_35 AC 1,232 ms
469,400 KB
testcase_36 AC 1,262 ms
470,088 KB
testcase_37 AC 1,201 ms
469,488 KB
testcase_38 AC 1,599 ms
469,960 KB
testcase_39 AC 1,602 ms
469,900 KB
testcase_40 AC 1,238 ms
469,856 KB
testcase_41 AC 1,591 ms
469,804 KB
testcase_42 AC 1,231 ms
469,700 KB
testcase_43 AC 1,198 ms
469,708 KB
testcase_44 AC 1,600 ms
469,468 KB
testcase_45 AC 1,224 ms
470,112 KB
testcase_46 AC 1,213 ms
469,232 KB
testcase_47 AC 1,213 ms
468,824 KB
testcase_48 AC 1,222 ms
469,476 KB
testcase_49 AC 1,201 ms
469,352 KB
testcase_50 AC 1,212 ms
469,536 KB
testcase_51 AC 1,192 ms
469,400 KB
testcase_52 AC 1,262 ms
392,576 KB
testcase_53 AC 1,440 ms
469,352 KB
testcase_54 AC 873 ms
469,144 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