結果

問題 No.2693 Sword
ユーザー timitimi
提出日時 2024-03-02 13:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2024-09-29 15:55:07
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,924 KB
testcase_01 AC 40 ms
53,884 KB
testcase_02 AC 40 ms
54,664 KB
testcase_03 AC 41 ms
54,984 KB
testcase_04 AC 40 ms
54,104 KB
testcase_05 AC 40 ms
55,308 KB
testcase_06 AC 40 ms
55,412 KB
testcase_07 AC 41 ms
53,796 KB
testcase_08 AC 40 ms
54,384 KB
testcase_09 AC 55 ms
67,444 KB
testcase_10 AC 47 ms
63,528 KB
testcase_11 AC 53 ms
65,452 KB
testcase_12 AC 41 ms
54,484 KB
testcase_13 AC 49 ms
64,492 KB
testcase_14 AC 46 ms
62,152 KB
testcase_15 AC 59 ms
68,976 KB
testcase_16 AC 57 ms
68,936 KB
testcase_17 AC 72 ms
76,652 KB
testcase_18 AC 51 ms
63,916 KB
testcase_19 AC 64 ms
70,648 KB
testcase_20 AC 51 ms
64,732 KB
testcase_21 AC 53 ms
65,396 KB
testcase_22 AC 62 ms
70,580 KB
testcase_23 AC 54 ms
66,996 KB
testcase_24 AC 41 ms
53,980 KB
testcase_25 AC 40 ms
54,868 KB
testcase_26 AC 40 ms
54,624 KB
testcase_27 AC 39 ms
53,996 KB
testcase_28 AC 41 ms
53,376 KB
testcase_29 AC 41 ms
55,452 KB
testcase_30 AC 40 ms
54,676 KB
testcase_31 AC 39 ms
54,524 KB
testcase_32 AC 124 ms
76,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque  
mod=998244353
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline
import math
N,M,K=map(int, stdin.readline().split())
dp=[-1]*(K+1) 
dp[0]=M;f=0
for _ in range(N):
  t,b=map(int, stdin.readline().split())
  ndp=[-1]*(K+1)
  if f==1:
    continue
  for i in range(K+1):
    ndp[i]=max(ndp[i],dp[i])
    if i!=0:
      if t==1:
        ndp[i]=max(ndp[i],dp[i-1]+b)
      else:
        ndp[i]=max(ndp[i],dp[i-1]*2)
  dp=ndp
  if dp[-1]>10**18:
    f=1
if f==1:
  print(-1)
else:
  print(dp[-1])  
0