結果

問題 No.2693 Sword
ユーザー hato336hato336
提出日時 2024-03-22 21:31:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 862 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 90,492 KB
最終ジャッジ日時 2024-09-30 10:56:16
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
85,780 KB
testcase_01 AC 128 ms
86,016 KB
testcase_02 AC 124 ms
85,760 KB
testcase_03 AC 122 ms
85,748 KB
testcase_04 AC 120 ms
85,760 KB
testcase_05 AC 120 ms
85,644 KB
testcase_06 AC 120 ms
85,648 KB
testcase_07 AC 120 ms
85,876 KB
testcase_08 AC 121 ms
85,684 KB
testcase_09 AC 158 ms
90,208 KB
testcase_10 AC 141 ms
89,728 KB
testcase_11 AC 143 ms
89,856 KB
testcase_12 AC 121 ms
85,644 KB
testcase_13 AC 142 ms
89,856 KB
testcase_14 AC 137 ms
89,848 KB
testcase_15 AC 157 ms
90,408 KB
testcase_16 AC 161 ms
90,368 KB
testcase_17 AC 158 ms
90,240 KB
testcase_18 AC 152 ms
90,112 KB
testcase_19 AC 153 ms
90,044 KB
testcase_20 AC 150 ms
90,152 KB
testcase_21 AC 163 ms
90,492 KB
testcase_22 AC 166 ms
90,240 KB
testcase_23 AC 146 ms
90,080 KB
testcase_24 WA -
testcase_25 AC 118 ms
85,760 KB
testcase_26 AC 118 ms
85,880 KB
testcase_27 AC 121 ms
85,632 KB
testcase_28 AC 121 ms
85,632 KB
testcase_29 AC 122 ms
86,016 KB
testcase_30 AC 122 ms
85,632 KB
testcase_31 AC 120 ms
85,712 KB
testcase_32 AC 163 ms
90,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
n,p,k = map(int,input().split())
item =[list(map(int,input().split())) for i in range(n)]

dp = [[-10**18 for i in range(k+1)] for j in range(n+1)]
dp[0][0] = p
for i in range(n):
    for j in range(k+1):
        dp[i][j] = min(dp[i][j],10**18)
        if dp[i][j] == -10**18:
            continue
        dp[i+1][j] = max(dp[i+1][j],dp[i][j])
        if j+1<=k:
            if item[i][0] == 1:
                dp[i+1][j+1] = max(dp[i+1][j+1],dp[i][j] + item[i][1])
            else:
                dp[i+1][j+1] = max(dp[i+1][j+1],dp[i][j] * 2)
print(dp[-1][-1] if dp[-1][-1] < 10**18 else -1)
0