結果

問題 No.2693 Sword
ユーザー kohei🍹kohei🍹
提出日時 2024-03-22 22:11:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-09-30 11:40:56
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 32 ms
51,584 KB
testcase_02 AC 33 ms
52,480 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 32 ms
52,096 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 33 ms
52,096 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 67 ms
73,088 KB
testcase_10 AC 45 ms
61,696 KB
testcase_11 AC 62 ms
71,424 KB
testcase_12 AC 33 ms
52,608 KB
testcase_13 AC 52 ms
66,048 KB
testcase_14 AC 46 ms
62,848 KB
testcase_15 AC 81 ms
78,440 KB
testcase_16 AC 91 ms
78,016 KB
testcase_17 AC 93 ms
80,112 KB
testcase_18 AC 77 ms
76,800 KB
testcase_19 AC 77 ms
78,208 KB
testcase_20 AC 62 ms
71,168 KB
testcase_21 AC 65 ms
72,320 KB
testcase_22 AC 72 ms
75,264 KB
testcase_23 AC 65 ms
71,936 KB
testcase_24 AC 35 ms
52,864 KB
testcase_25 AC 34 ms
51,584 KB
testcase_26 AC 34 ms
52,096 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 35 ms
51,584 KB
testcase_29 AC 36 ms
52,352 KB
testcase_30 AC 36 ms
52,352 KB
testcase_31 AC 34 ms
52,096 KB
testcase_32 AC 98 ms
84,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INT = lambda : int(input())
MI = lambda : map(int, input().split())
MI_DEC = lambda : map(lambda x : int(x)-1, input().split())
LI = lambda : list(map(int, input().split()))
LI_DEC = lambda : list(map(lambda x : int(x)-1, input().split()))
INF = float('inf')
CEIL = lambda a, b : (a + b - 1) // b

N, P, K = MI()

dp = [[-1]*(K+1) for i in range(N+1)]
dp[0][0] = P

MAX = 10**18
for i in range(N):
    T, B = MI()

    for j in range(K+1):
        dp[i+1][j] = max(dp[i+1][j], dp[i][j])

        if j + 1 > K:
            continue

        if T == 1:
            dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] + B)

        else:
            dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j] * 2)

        if dp[i+1][j+1] > MAX:
            dp[i+1][j+1] = INF


print(-1 if dp[N][K] == INF else dp[N][K])
0