結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー 👑 rin204rin204
提出日時 2022-02-12 23:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-06-29 02:22:59
合計ジャッジ時間 18,339 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 46 ms
60,884 KB
testcase_03 AC 43 ms
58,624 KB
testcase_04 AC 37 ms
52,580 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 44 ms
60,032 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 42 ms
58,368 KB
testcase_09 AC 74 ms
69,760 KB
testcase_10 AC 65 ms
68,120 KB
testcase_11 AC 65 ms
66,560 KB
testcase_12 AC 172 ms
76,928 KB
testcase_13 AC 440 ms
77,692 KB
testcase_14 AC 125 ms
73,472 KB
testcase_15 AC 125 ms
76,940 KB
testcase_16 AC 159 ms
77,056 KB
testcase_17 AC 178 ms
77,824 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 38 ms
52,608 KB
testcase_21 AC 63 ms
66,560 KB
testcase_22 AC 58 ms
65,408 KB
testcase_23 AC 60 ms
66,304 KB
testcase_24 AC 545 ms
77,824 KB
testcase_25 AC 586 ms
77,696 KB
testcase_26 AC 577 ms
77,440 KB
testcase_27 AC 570 ms
77,696 KB
testcase_28 AC 446 ms
77,824 KB
testcase_29 AC 445 ms
77,816 KB
testcase_30 AC 36 ms
52,480 KB
testcase_31 AC 36 ms
52,096 KB
testcase_32 AC 65 ms
67,328 KB
testcase_33 AC 64 ms
67,328 KB
testcase_34 AC 74 ms
70,272 KB
testcase_35 AC 544 ms
78,208 KB
testcase_36 AC 539 ms
77,824 KB
testcase_37 AC 579 ms
77,568 KB
testcase_38 AC 588 ms
78,080 KB
testcase_39 AC 591 ms
78,208 KB
testcase_40 AC 580 ms
77,696 KB
testcase_41 AC 592 ms
78,016 KB
testcase_42 AC 578 ms
77,996 KB
testcase_43 AC 586 ms
77,824 KB
testcase_44 AC 565 ms
77,696 KB
testcase_45 AC 573 ms
77,824 KB
testcase_46 AC 489 ms
77,824 KB
testcase_47 AC 529 ms
77,720 KB
testcase_48 AC 536 ms
77,312 KB
testcase_49 AC 550 ms
77,696 KB
testcase_50 AC 462 ms
77,696 KB
testcase_51 AC 456 ms
77,568 KB
testcase_52 AC 376 ms
77,076 KB
testcase_53 AC 443 ms
77,312 KB
testcase_54 AC 348 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
pd = [list(map(int, input().split())) for _ in range(n)]
pd.sort()
dp = [[0] * 2 for _ in range(k + 1)]
for p, d in pd:
    for j in range(k, p - 1, -1):
        dp[j][0] = max(dp[j][0], dp[j][1] + d)
        dp[j][1] = max(dp[j][1], dp[j - p][0] + d)
    for j in range(p - 1, -1, -1):
        dp[j][0] = max(dp[j][0], dp[j][1] + d)

ans = max(v for _, v in dp)
print(ans)
    
0