結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,792 KB
testcase_01 AC 32 ms
52,808 KB
testcase_02 AC 34 ms
53,568 KB
testcase_03 AC 33 ms
52,412 KB
testcase_04 WA -
testcase_05 AC 33 ms
52,816 KB
testcase_06 WA -
testcase_07 AC 33 ms
53,700 KB
testcase_08 WA -
testcase_09 AC 60 ms
70,660 KB
testcase_10 AC 44 ms
62,088 KB
testcase_11 AC 60 ms
68,028 KB
testcase_12 AC 34 ms
53,508 KB
testcase_13 AC 53 ms
66,264 KB
testcase_14 AC 36 ms
59,588 KB
testcase_15 AC 62 ms
65,408 KB
testcase_16 AC 57 ms
69,736 KB
testcase_17 AC 41 ms
64,568 KB
testcase_18 AC 40 ms
61,488 KB
testcase_19 AC 70 ms
75,104 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 68 ms
75,336 KB
testcase_23 WA -
testcase_24 AC 34 ms
52,988 KB
testcase_25 AC 32 ms
52,468 KB
testcase_26 AC 33 ms
52,752 KB
testcase_27 AC 32 ms
53,608 KB
testcase_28 AC 31 ms
53,120 KB
testcase_29 AC 33 ms
53,540 KB
testcase_30 AC 32 ms
53,440 KB
testcase_31 AC 33 ms
53,232 KB
testcase_32 AC 43 ms
67,360 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