結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,944 KB
testcase_01 AC 40 ms
52,744 KB
testcase_02 AC 40 ms
53,572 KB
testcase_03 AC 40 ms
52,832 KB
testcase_04 AC 41 ms
53,424 KB
testcase_05 AC 40 ms
52,724 KB
testcase_06 AC 40 ms
53,312 KB
testcase_07 AC 40 ms
52,136 KB
testcase_08 AC 41 ms
52,596 KB
testcase_09 AC 71 ms
70,756 KB
testcase_10 AC 55 ms
61,708 KB
testcase_11 AC 66 ms
69,056 KB
testcase_12 AC 40 ms
52,572 KB
testcase_13 AC 63 ms
67,876 KB
testcase_14 AC 45 ms
58,856 KB
testcase_15 AC 57 ms
64,716 KB
testcase_16 AC 68 ms
70,612 KB
testcase_17 AC 51 ms
64,612 KB
testcase_18 AC 50 ms
61,164 KB
testcase_19 AC 82 ms
74,544 KB
testcase_20 AC 62 ms
67,992 KB
testcase_21 AC 71 ms
70,112 KB
testcase_22 AC 82 ms
74,308 KB
testcase_23 AC 67 ms
69,052 KB
testcase_24 AC 40 ms
53,496 KB
testcase_25 AC 40 ms
53,224 KB
testcase_26 AC 42 ms
52,196 KB
testcase_27 AC 40 ms
53,040 KB
testcase_28 AC 40 ms
53,496 KB
testcase_29 AC 40 ms
53,308 KB
testcase_30 AC 41 ms
52,476 KB
testcase_31 AC 41 ms
52,756 KB
testcase_32 AC 50 ms
66,808 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