結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー りあんりあん
提出日時 2019-12-12 23:41:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 794 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-06-27 16:11:17
合計ジャッジ時間 19,981 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 56 ms
61,824 KB
testcase_03 AC 46 ms
58,624 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 54 ms
61,056 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 51 ms
60,032 KB
testcase_09 AC 93 ms
70,912 KB
testcase_10 AC 80 ms
69,632 KB
testcase_11 AC 79 ms
68,096 KB
testcase_12 AC 200 ms
76,772 KB
testcase_13 AC 456 ms
77,824 KB
testcase_14 AC 159 ms
77,056 KB
testcase_15 AC 145 ms
76,544 KB
testcase_16 AC 201 ms
77,184 KB
testcase_17 AC 197 ms
77,312 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 41 ms
52,096 KB
testcase_20 AC 42 ms
52,224 KB
testcase_21 AC 79 ms
68,992 KB
testcase_22 AC 74 ms
67,840 KB
testcase_23 AC 77 ms
68,736 KB
testcase_24 AC 576 ms
77,952 KB
testcase_25 AC 609 ms
77,824 KB
testcase_26 AC 672 ms
77,312 KB
testcase_27 AC 685 ms
77,952 KB
testcase_28 AC 602 ms
77,440 KB
testcase_29 AC 467 ms
77,056 KB
testcase_30 AC 41 ms
51,712 KB
testcase_31 AC 41 ms
51,712 KB
testcase_32 AC 75 ms
68,096 KB
testcase_33 AC 80 ms
70,912 KB
testcase_34 AC 85 ms
72,320 KB
testcase_35 AC 752 ms
77,792 KB
testcase_36 AC 763 ms
77,824 KB
testcase_37 AC 794 ms
77,696 KB
testcase_38 AC 649 ms
77,696 KB
testcase_39 AC 646 ms
77,824 KB
testcase_40 AC 660 ms
78,080 KB
testcase_41 AC 713 ms
78,080 KB
testcase_42 AC 700 ms
77,696 KB
testcase_43 AC 665 ms
77,696 KB
testcase_44 AC 702 ms
78,336 KB
testcase_45 AC 697 ms
77,696 KB
testcase_46 AC 469 ms
77,440 KB
testcase_47 AC 468 ms
77,056 KB
testcase_48 AC 460 ms
77,184 KB
testcase_49 AC 458 ms
77,056 KB
testcase_50 AC 459 ms
77,184 KB
testcase_51 AC 458 ms
77,184 KB
testcase_52 AC 414 ms
77,056 KB
testcase_53 AC 476 ms
77,184 KB
testcase_54 AC 315 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
pizza = [ list(map(int, input().split())) for i in range(n) ]
pizza.sort()
pizza.reverse()
dp = [ [ -(1 << 26) ] * 2 for i in range(k + 1) ]
dp[0][0] = 0
for p, d in pizza:
    for i in range(k, -1, -1):
        dp[i][0] = max(dp[i][0], dp[i][1] + d)
        if i >= p:
            dp[i][1] = max(dp[i][1], dp[i - p][0] + d)

print(max([max(i) for i in dp]))
0