結果

問題 No.2693 Sword
ユーザー tipstar0125tipstar0125
提出日時 2024-03-25 10:57:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 148,608 KB
最終ジャッジ日時 2024-09-30 14:01:14
合計ジャッジ時間 3,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
51,584 KB
testcase_09 AC 80 ms
71,552 KB
testcase_10 AC 56 ms
63,360 KB
testcase_11 AC 66 ms
67,072 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 59 ms
65,536 KB
testcase_14 AC 53 ms
62,720 KB
testcase_15 AC 100 ms
77,696 KB
testcase_16 AC 93 ms
77,696 KB
testcase_17 AC 118 ms
81,152 KB
testcase_18 AC 91 ms
76,416 KB
testcase_19 AC 72 ms
69,248 KB
testcase_20 AC 71 ms
69,120 KB
testcase_21 AC 79 ms
71,296 KB
testcase_22 AC 81 ms
70,784 KB
testcase_23 AC 69 ms
68,480 KB
testcase_24 AC 40 ms
52,352 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 37 ms
51,968 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 37 ms
51,840 KB
testcase_32 AC 236 ms
148,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,K=map(int,input().split())
T=[]
B=[]
for _ in range(N):
    t,b=map(int,input().split())
    T.append(t)
    B.append(b)

INF=int(1e18)
dp=[[0 for _ in range(K+1)] for _ in range(N+1)]
dp[0][0]=P

for i in range(1,N+1):
    for j in range(0,K+1):
        if dp[i-1][j]==0:continue
        dp[i][j]=max(dp[i][j],dp[i-1][j])
        if T[i-1]==1 and j<K:
            dp[i][j+1]=max(dp[i][j+1],dp[i-1][j]+B[i-1])
        if T[i-1]==2 and j<K:
            dp[i][j+1]=max(dp[i][j+1],dp[i-1][j]*2)
ans=dp[N][K]
if ans>INF:print(-1)
else:print(ans)
0