結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー ttrttr
提出日時 2020-01-30 21:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,539 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 468,736 KB
最終ジャッジ日時 2024-09-16 03:55:23
合計ジャッジ時間 36,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 54 ms
64,000 KB
testcase_03 AC 44 ms
59,520 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 55 ms
64,256 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 48 ms
61,952 KB
testcase_09 AC 106 ms
84,736 KB
testcase_10 AC 82 ms
74,112 KB
testcase_11 AC 93 ms
80,768 KB
testcase_12 AC 341 ms
151,552 KB
testcase_13 AC 1,009 ms
349,952 KB
testcase_14 AC 217 ms
113,024 KB
testcase_15 AC 206 ms
123,520 KB
testcase_16 AC 248 ms
148,096 KB
testcase_17 AC 281 ms
165,888 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 34 ms
51,968 KB
testcase_21 AC 73 ms
72,832 KB
testcase_22 AC 66 ms
69,632 KB
testcase_23 AC 72 ms
70,400 KB
testcase_24 AC 1,311 ms
468,480 KB
testcase_25 AC 1,539 ms
468,224 KB
testcase_26 AC 1,182 ms
468,224 KB
testcase_27 AC 1,189 ms
468,480 KB
testcase_28 AC 879 ms
468,480 KB
testcase_29 AC 914 ms
468,608 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 36 ms
51,584 KB
testcase_32 AC 72 ms
69,888 KB
testcase_33 AC 76 ms
71,168 KB
testcase_34 AC 92 ms
83,072 KB
testcase_35 AC 1,453 ms
468,608 KB
testcase_36 AC 1,438 ms
468,736 KB
testcase_37 AC 1,460 ms
468,736 KB
testcase_38 AC 1,486 ms
468,480 KB
testcase_39 AC 1,481 ms
468,480 KB
testcase_40 AC 1,233 ms
468,480 KB
testcase_41 AC 1,286 ms
468,352 KB
testcase_42 AC 1,246 ms
468,352 KB
testcase_43 AC 1,262 ms
468,224 KB
testcase_44 AC 1,231 ms
468,608 KB
testcase_45 AC 1,206 ms
468,480 KB
testcase_46 AC 1,034 ms
468,480 KB
testcase_47 AC 1,008 ms
468,480 KB
testcase_48 AC 925 ms
468,608 KB
testcase_49 AC 909 ms
468,224 KB
testcase_50 AC 939 ms
468,480 KB
testcase_51 AC 902 ms
468,608 KB
testcase_52 AC 982 ms
392,192 KB
testcase_53 AC 1,180 ms
468,608 KB
testcase_54 AC 690 ms
468,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
L = []
for _ in range(N):
    p,d = map(int, input().split())
    L.append((p, d))

L.sort(reverse=True)
dp0 = [[0]*(K+1) for _ in range(N+1)]
dp1 = [[0]*(K+1) for _ in range(N+1)]
for i in range(N):
    for j in range(K+1):
        if j < L[i][0] and dp1[i][j] > 0:
            dp0[i+1][j] = max(dp0[i][j], dp1[i][j]+L[i][1])
        elif j < L[i][0]:
            dp0[i+1][j] = dp0[i][j]
        else:
            if dp1[i][j] > 0:
                dp0[i+1][j] = max(dp0[i][j], dp1[i][j]+L[i][1])
            else:
                dp0[i+1][j] = dp0[i][j]
            dp1[i+1][j] = max(dp1[i][j], dp0[i][j-L[i][0]]+L[i][1])

print(max(dp0[N][K], dp1[N][K]))
0