結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー neterukunneterukun
提出日時 2020-01-01 21:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-05-02 05:56:25
合計ジャッジ時間 13,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 44 ms
61,824 KB
testcase_03 AC 38 ms
58,496 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 33 ms
52,352 KB
testcase_06 AC 42 ms
60,416 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 39 ms
59,904 KB
testcase_09 AC 64 ms
68,096 KB
testcase_10 AC 59 ms
66,176 KB
testcase_11 AC 61 ms
66,688 KB
testcase_12 AC 128 ms
76,416 KB
testcase_13 AC 355 ms
77,568 KB
testcase_14 AC 100 ms
74,752 KB
testcase_15 AC 91 ms
71,936 KB
testcase_16 AC 118 ms
76,976 KB
testcase_17 AC 130 ms
76,896 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 35 ms
52,480 KB
testcase_20 AC 34 ms
52,224 KB
testcase_21 AC 59 ms
64,768 KB
testcase_22 AC 54 ms
65,408 KB
testcase_23 AC 55 ms
64,896 KB
testcase_24 AC 365 ms
77,672 KB
testcase_25 AC 388 ms
77,696 KB
testcase_26 AC 429 ms
77,056 KB
testcase_27 AC 421 ms
77,784 KB
testcase_28 AC 273 ms
77,220 KB
testcase_29 AC 278 ms
76,800 KB
testcase_30 AC 36 ms
51,968 KB
testcase_31 AC 31 ms
52,352 KB
testcase_32 AC 52 ms
65,024 KB
testcase_33 AC 57 ms
66,944 KB
testcase_34 AC 57 ms
66,560 KB
testcase_35 AC 393 ms
77,132 KB
testcase_36 AC 374 ms
77,568 KB
testcase_37 AC 431 ms
77,056 KB
testcase_38 AC 428 ms
77,568 KB
testcase_39 AC 423 ms
77,952 KB
testcase_40 AC 454 ms
77,696 KB
testcase_41 AC 431 ms
77,824 KB
testcase_42 AC 435 ms
77,312 KB
testcase_43 AC 448 ms
77,940 KB
testcase_44 AC 425 ms
77,868 KB
testcase_45 AC 435 ms
77,952 KB
testcase_46 AC 319 ms
77,236 KB
testcase_47 AC 276 ms
77,028 KB
testcase_48 AC 294 ms
76,928 KB
testcase_49 AC 366 ms
76,928 KB
testcase_50 AC 366 ms
77,184 KB
testcase_51 AC 359 ms
77,056 KB
testcase_52 AC 347 ms
77,184 KB
testcase_53 AC 400 ms
77,184 KB
testcase_54 AC 168 ms
77,056 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(2)]

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

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