結果

問題 No.2693 Sword
ユーザー ButterflvButterflv
提出日時 2024-04-30 15:14:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 74,544 KB
最終ジャッジ日時 2024-04-30 15:14:55
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,720 KB
testcase_01 AC 32 ms
53,364 KB
testcase_02 AC 40 ms
52,396 KB
testcase_03 AC 33 ms
52,676 KB
testcase_04 WA -
testcase_05 AC 33 ms
52,432 KB
testcase_06 WA -
testcase_07 AC 32 ms
53,160 KB
testcase_08 WA -
testcase_09 AC 61 ms
72,128 KB
testcase_10 AC 43 ms
61,900 KB
testcase_11 AC 54 ms
69,672 KB
testcase_12 AC 33 ms
52,788 KB
testcase_13 AC 51 ms
66,352 KB
testcase_14 AC 36 ms
59,220 KB
testcase_15 AC 47 ms
65,472 KB
testcase_16 AC 54 ms
70,232 KB
testcase_17 AC 40 ms
64,476 KB
testcase_18 AC 40 ms
61,304 KB
testcase_19 AC 67 ms
74,544 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 66 ms
74,180 KB
testcase_23 WA -
testcase_24 AC 34 ms
53,668 KB
testcase_25 AC 39 ms
53,476 KB
testcase_26 AC 35 ms
52,360 KB
testcase_27 AC 34 ms
53,388 KB
testcase_28 AC 32 ms
53,036 KB
testcase_29 AC 32 ms
53,840 KB
testcase_30 AC 33 ms
52,804 KB
testcase_31 AC 33 ms
52,792 KB
testcase_32 AC 40 ms
67,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P,K=map(int,input().split())
dp=[[0 for i in range(K+1)] for j in range(N+1)]
dp[0][0]=P
for i in range(1, N+1):
  T,B=map(int,input().split())
  if T==1:
    for j in range(K+1):
      dp[i][j]=max(dp[i][j], dp[i-1][j], (dp[i-1][j-1]+B if j-1>=0 else 0))
      if dp[i][j]>10**18: print(-1); exit()
  else:
    for j in range(K+1):
      dp[i][j]=max(dp[i][j], dp[i-1][j], 2*dp[i-1][j-1])
      if dp[i][j]>10**18: print(-1); exit()
  dp[i][j]=max(dp[i][j], dp[i-1][j])
print(dp[N][K])
0