結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,072 KB
testcase_01 AC 41 ms
54,808 KB
testcase_02 AC 40 ms
54,176 KB
testcase_03 AC 41 ms
54,680 KB
testcase_04 AC 40 ms
53,740 KB
testcase_05 AC 40 ms
55,108 KB
testcase_06 AC 41 ms
55,176 KB
testcase_07 AC 40 ms
54,024 KB
testcase_08 AC 41 ms
53,976 KB
testcase_09 AC 59 ms
67,364 KB
testcase_10 AC 48 ms
63,004 KB
testcase_11 AC 53 ms
65,296 KB
testcase_12 AC 40 ms
53,628 KB
testcase_13 AC 51 ms
64,112 KB
testcase_14 AC 47 ms
62,092 KB
testcase_15 AC 78 ms
76,676 KB
testcase_16 AC 63 ms
70,248 KB
testcase_17 AC 88 ms
76,440 KB
testcase_18 AC 63 ms
73,120 KB
testcase_19 AC 63 ms
70,156 KB
testcase_20 AC 52 ms
64,808 KB
testcase_21 AC 53 ms
66,624 KB
testcase_22 AC 62 ms
70,608 KB
testcase_23 AC 55 ms
66,868 KB
testcase_24 AC 41 ms
54,648 KB
testcase_25 AC 39 ms
54,384 KB
testcase_26 AC 41 ms
53,868 KB
testcase_27 AC 39 ms
53,720 KB
testcase_28 AC 39 ms
54,780 KB
testcase_29 AC 40 ms
54,676 KB
testcase_30 AC 37 ms
55,084 KB
testcase_31 AC 38 ms
54,732 KB
testcase_32 AC 113 ms
76,332 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 dp[-1]>10**18:
  print(-1)
else:
  print(dp[-1])  
0