結果

問題 No.2693 Sword
ユーザー ButterflvButterflv
提出日時 2024-04-30 15:18:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-11-20 11:15:23
合計ジャッジ時間 2,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,564 KB
testcase_01 AC 39 ms
53,020 KB
testcase_02 AC 41 ms
52,596 KB
testcase_03 AC 40 ms
52,220 KB
testcase_04 WA -
testcase_05 AC 44 ms
52,204 KB
testcase_06 WA -
testcase_07 AC 41 ms
52,396 KB
testcase_08 WA -
testcase_09 AC 70 ms
70,680 KB
testcase_10 AC 53 ms
61,904 KB
testcase_11 AC 64 ms
68,244 KB
testcase_12 AC 40 ms
52,028 KB
testcase_13 AC 61 ms
66,240 KB
testcase_14 AC 43 ms
58,076 KB
testcase_15 AC 56 ms
66,108 KB
testcase_16 AC 67 ms
69,608 KB
testcase_17 AC 50 ms
64,568 KB
testcase_18 AC 48 ms
61,276 KB
testcase_19 AC 81 ms
74,716 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
75,392 KB
testcase_23 WA -
testcase_24 AC 40 ms
52,128 KB
testcase_25 AC 39 ms
52,200 KB
testcase_26 AC 40 ms
52,012 KB
testcase_27 AC 40 ms
53,072 KB
testcase_28 AC 39 ms
52,896 KB
testcase_29 AC 41 ms
54,068 KB
testcase_30 AC 41 ms
52,460 KB
testcase_31 AC 39 ms
51,816 KB
testcase_32 AC 49 ms
66,428 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()
print(dp[N][K] if dp[N][K]<=10**18 else -1)
0