結果

問題 No.2693 Sword
ユーザー mutualnsmutualns
提出日時 2024-03-23 05:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 71,244 KB
最終ジャッジ日時 2024-09-30 13:04:34
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,980 KB
testcase_01 AC 35 ms
53,308 KB
testcase_02 AC 33 ms
52,952 KB
testcase_03 AC 32 ms
52,496 KB
testcase_04 AC 33 ms
52,760 KB
testcase_05 AC 33 ms
53,560 KB
testcase_06 AC 32 ms
52,896 KB
testcase_07 AC 32 ms
53,052 KB
testcase_08 AC 33 ms
52,432 KB
testcase_09 AC 52 ms
65,156 KB
testcase_10 AC 45 ms
62,152 KB
testcase_11 AC 51 ms
65,632 KB
testcase_12 AC 37 ms
52,524 KB
testcase_13 AC 50 ms
66,744 KB
testcase_14 AC 35 ms
52,200 KB
testcase_15 AC 45 ms
61,572 KB
testcase_16 AC 54 ms
66,708 KB
testcase_17 AC 37 ms
58,316 KB
testcase_18 AC 39 ms
59,832 KB
testcase_19 AC 62 ms
70,656 KB
testcase_20 AC 49 ms
64,256 KB
testcase_21 AC 48 ms
64,984 KB
testcase_22 AC 60 ms
71,244 KB
testcase_23 AC 48 ms
66,368 KB
testcase_24 AC 33 ms
52,644 KB
testcase_25 AC 33 ms
53,556 KB
testcase_26 AC 33 ms
52,156 KB
testcase_27 AC 34 ms
53,760 KB
testcase_28 AC 33 ms
52,524 KB
testcase_29 AC 34 ms
52,756 KB
testcase_30 AC 34 ms
53,400 KB
testcase_31 AC 34 ms
52,364 KB
testcase_32 AC 32 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p,k=map(int,input().split())
dp=[-1]*(k+1)
dp[0]=p
for i in range(n):
  a,b=map(int,input().split())
  if a==1:
    for j in range(1,k+1):
      if dp[-j-1]==-1:
        continue
      dp[-j]=max(dp[-j],dp[-j-1]+b)
      if dp[-j]>10**18:
        print(-1)
        exit()
  else:
    for j in range(1,k+1):
      if dp[-j-1]==-1:
        continue
      dp[-j]=max(dp[-j],dp[-j-1]*2)
      if dp[-j]>10**18:
        print(-1)
        exit()
        
print(dp[-1])
0