結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー H20H20
提出日時 2022-04-13 13:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-02 13:04:38
合計ジャッジ時間 18,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 46 ms
63,232 KB
testcase_03 AC 35 ms
58,112 KB
testcase_04 AC 31 ms
51,712 KB
testcase_05 AC 32 ms
52,224 KB
testcase_06 AC 42 ms
61,952 KB
testcase_07 AC 33 ms
52,352 KB
testcase_08 AC 39 ms
60,544 KB
testcase_09 AC 81 ms
76,672 KB
testcase_10 AC 72 ms
76,192 KB
testcase_11 AC 66 ms
76,160 KB
testcase_12 AC 202 ms
77,164 KB
testcase_13 AC 538 ms
78,336 KB
testcase_14 AC 147 ms
77,024 KB
testcase_15 AC 121 ms
76,736 KB
testcase_16 AC 155 ms
77,312 KB
testcase_17 AC 180 ms
77,696 KB
testcase_18 AC 34 ms
52,096 KB
testcase_19 AC 35 ms
52,224 KB
testcase_20 AC 33 ms
52,224 KB
testcase_21 AC 69 ms
76,544 KB
testcase_22 AC 62 ms
72,832 KB
testcase_23 AC 69 ms
76,416 KB
testcase_24 AC 692 ms
78,208 KB
testcase_25 AC 734 ms
78,124 KB
testcase_26 AC 647 ms
77,824 KB
testcase_27 AC 605 ms
77,952 KB
testcase_28 AC 493 ms
77,992 KB
testcase_29 AC 460 ms
77,952 KB
testcase_30 AC 32 ms
52,480 KB
testcase_31 AC 31 ms
51,968 KB
testcase_32 AC 64 ms
74,240 KB
testcase_33 AC 72 ms
76,544 KB
testcase_34 AC 69 ms
76,672 KB
testcase_35 AC 751 ms
77,824 KB
testcase_36 AC 749 ms
78,236 KB
testcase_37 AC 634 ms
77,776 KB
testcase_38 AC 639 ms
78,208 KB
testcase_39 AC 643 ms
77,952 KB
testcase_40 AC 585 ms
78,080 KB
testcase_41 AC 618 ms
78,040 KB
testcase_42 AC 583 ms
78,080 KB
testcase_43 AC 570 ms
78,208 KB
testcase_44 AC 568 ms
78,208 KB
testcase_45 AC 685 ms
78,080 KB
testcase_46 AC 464 ms
78,080 KB
testcase_47 AC 482 ms
77,904 KB
testcase_48 AC 458 ms
77,952 KB
testcase_49 AC 455 ms
78,208 KB
testcase_50 AC 506 ms
78,080 KB
testcase_51 AC 456 ms
77,952 KB
testcase_52 AC 309 ms
77,440 KB
testcase_53 AC 340 ms
77,952 KB
testcase_54 AC 235 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
PD = [list(map(int,input().split())) for _ in range(N)]
PD = sorted(PD,reverse=True)
DP = [[-1]*2 for _ in range(K+1)]
DP[0][0]=0
for p,d in PD:
    for i in reversed(range(K+1)):
        if DP[i][0]>=0 and i+p<=K:
            DP[i+p][1] = max(DP[i+p][1],DP[i][0]+d)
        if DP[i][1]>=0:
            DP[i][0] = max(DP[i][0],DP[i][1]+d)
ans = 0
for dp in DP:
    ans = max(ans,max(dp))
print(ans)
0