結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー ttrttr
提出日時 2020-01-30 21:19:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,633 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 468,864 KB
最終ジャッジ日時 2024-09-16 03:56:59
合計ジャッジ時間 18,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 50 ms
62,720 KB
testcase_03 AC 42 ms
59,008 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 51 ms
62,976 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 46 ms
60,928 KB
testcase_09 AC 96 ms
84,352 KB
testcase_10 AC 76 ms
71,040 KB
testcase_11 AC 76 ms
73,728 KB
testcase_12 AC 356 ms
151,296 KB
testcase_13 AC 1,109 ms
349,824 KB
testcase_14 AC 223 ms
112,000 KB
testcase_15 AC 168 ms
108,800 KB
testcase_16 AC 239 ms
148,224 KB
testcase_17 AC 293 ms
165,248 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 34 ms
52,096 KB
testcase_21 AC 73 ms
71,168 KB
testcase_22 AC 64 ms
67,584 KB
testcase_23 AC 67 ms
68,992 KB
testcase_24 AC 1,427 ms
468,480 KB
testcase_25 AC 1,536 ms
468,352 KB
testcase_26 AC 1,282 ms
468,608 KB
testcase_27 AC 1,303 ms
468,736 KB
testcase_28 AC 916 ms
468,224 KB
testcase_29 AC 834 ms
468,608 KB
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 36 ms
51,712 KB
testcase_32 AC 69 ms
67,968 KB
testcase_33 AC 74 ms
69,504 KB
testcase_34 AC 91 ms
82,816 KB
testcase_35 AC 1,624 ms
468,480 KB
testcase_36 AC 1,574 ms
468,480 KB
testcase_37 AC 1,632 ms
468,608 KB
testcase_38 AC 1,633 ms
468,480 KB
testcase_39 AC 1,595 ms
468,608 KB
testcase_40 AC 1,392 ms
468,608 KB
testcase_41 AC 1,345 ms
468,608 KB
testcase_42 AC 1,340 ms
468,608 KB
testcase_43 AC 1,317 ms
468,480 KB
testcase_44 AC 1,323 ms
468,864 KB
testcase_45 AC 1,362 ms
468,096 KB
testcase_46 AC 942 ms
468,736 KB
testcase_47 AC 846 ms
468,480 KB
testcase_48 AC 872 ms
468,608 KB
testcase_49 AC 836 ms
468,864 KB
testcase_50 AC 852 ms
468,352 KB
testcase_51 AC 863 ms
468,352 KB
testcase_52 AC 1,095 ms
392,320 KB
testcase_53 AC 1,380 ms
468,352 KB
testcase_54 AC 645 ms
468,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    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]))

if __name__ == "__main__":
    main()
0