結果

問題 No.2693 Sword
ユーザー ButterflvButterflv
提出日時 2024-04-30 15:24:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 74,220 KB
最終ジャッジ日時 2024-11-20 11:23:45
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,824 KB
testcase_01 AC 43 ms
52,880 KB
testcase_02 AC 41 ms
52,400 KB
testcase_03 AC 40 ms
52,540 KB
testcase_04 AC 40 ms
52,176 KB
testcase_05 AC 41 ms
52,252 KB
testcase_06 AC 41 ms
53,152 KB
testcase_07 AC 41 ms
52,336 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 70 ms
70,028 KB
testcase_10 AC 54 ms
62,580 KB
testcase_11 AC 64 ms
68,544 KB
testcase_12 AC 40 ms
53,016 KB
testcase_13 AC 60 ms
66,592 KB
testcase_14 AC 43 ms
58,332 KB
testcase_15 AC 56 ms
64,020 KB
testcase_16 AC 67 ms
69,616 KB
testcase_17 AC 51 ms
64,204 KB
testcase_18 AC 50 ms
61,640 KB
testcase_19 AC 80 ms
74,164 KB
testcase_20 AC 61 ms
66,524 KB
testcase_21 AC 67 ms
69,580 KB
testcase_22 AC 80 ms
74,220 KB
testcase_23 AC 67 ms
68,460 KB
testcase_24 AC 41 ms
52,952 KB
testcase_25 AC 40 ms
52,868 KB
testcase_26 AC 40 ms
53,576 KB
testcase_27 AC 40 ms
52,376 KB
testcase_28 AC 40 ms
53,564 KB
testcase_29 AC 41 ms
52,640 KB
testcase_30 AC 42 ms
52,636 KB
testcase_31 AC 42 ms
52,240 KB
testcase_32 AC 51 ms
66,300 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):
      if j-1>=0: dp[i][j]=max(dp[i][j], dp[i-1][j], 2*dp[i-1][j-1])
      else: dp[i][j]=max(dp[i][j], dp[i-1][j])
      if dp[i][j]>10**18: print(-1); exit()
print(dp[N][K] if dp[N][K]<=10**18 else -1)
0