結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー ttrttr
提出日時 2020-01-30 21:08:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,961 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 469,340 KB
最終ジャッジ日時 2024-09-16 03:54:21
合計ジャッジ時間 44,322 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,360 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 53 ms
65,124 KB
testcase_03 AC 45 ms
60,260 KB
testcase_04 AC 37 ms
53,836 KB
testcase_05 AC 37 ms
53,716 KB
testcase_06 AC 55 ms
64,872 KB
testcase_07 AC 37 ms
52,428 KB
testcase_08 AC 50 ms
62,424 KB
testcase_09 AC 102 ms
84,692 KB
testcase_10 AC 87 ms
81,004 KB
testcase_11 AC 86 ms
80,740 KB
testcase_12 AC 427 ms
151,500 KB
testcase_13 AC 1,322 ms
350,480 KB
testcase_14 AC 247 ms
111,848 KB
testcase_15 AC 236 ms
124,244 KB
testcase_16 AC 282 ms
148,296 KB
testcase_17 AC 323 ms
165,748 KB
testcase_18 AC 37 ms
52,876 KB
testcase_19 AC 37 ms
52,828 KB
testcase_20 AC 36 ms
52,976 KB
testcase_21 AC 77 ms
73,704 KB
testcase_22 AC 67 ms
70,788 KB
testcase_23 AC 71 ms
72,776 KB
testcase_24 AC 1,730 ms
469,128 KB
testcase_25 AC 1,838 ms
468,560 KB
testcase_26 AC 1,486 ms
469,020 KB
testcase_27 AC 1,527 ms
469,284 KB
testcase_28 AC 1,097 ms
469,076 KB
testcase_29 AC 1,128 ms
468,684 KB
testcase_30 AC 36 ms
52,852 KB
testcase_31 AC 36 ms
52,608 KB
testcase_32 AC 70 ms
72,080 KB
testcase_33 AC 74 ms
72,744 KB
testcase_34 AC 94 ms
83,336 KB
testcase_35 AC 1,910 ms
469,340 KB
testcase_36 AC 1,907 ms
469,040 KB
testcase_37 AC 1,961 ms
468,620 KB
testcase_38 AC 1,943 ms
468,904 KB
testcase_39 AC 1,948 ms
469,044 KB
testcase_40 AC 1,586 ms
468,764 KB
testcase_41 AC 1,572 ms
469,180 KB
testcase_42 AC 1,553 ms
468,852 KB
testcase_43 AC 1,559 ms
468,876 KB
testcase_44 AC 1,549 ms
468,760 KB
testcase_45 AC 1,538 ms
468,944 KB
testcase_46 AC 1,151 ms
469,060 KB
testcase_47 AC 1,124 ms
468,712 KB
testcase_48 AC 1,104 ms
468,864 KB
testcase_49 AC 1,121 ms
469,248 KB
testcase_50 AC 1,093 ms
468,992 KB
testcase_51 AC 1,094 ms
469,248 KB
testcase_52 AC 1,266 ms
392,076 KB
testcase_53 AC 1,510 ms
469,152 KB
testcase_54 AC 810 ms
468,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
L = [[int(l) for l in input().split()] for _ in range(N)]

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