結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー とりゐとりゐ
提出日時 2022-09-16 22:37:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 652 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 84,356 KB
最終ジャッジ日時 2024-06-01 13:40:53
合計ジャッジ時間 9,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,200 KB
testcase_01 AC 37 ms
53,348 KB
testcase_02 AC 38 ms
53,244 KB
testcase_03 AC 37 ms
53,508 KB
testcase_04 AC 37 ms
53,884 KB
testcase_05 AC 57 ms
72,148 KB
testcase_06 AC 50 ms
69,104 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 37 ms
52,508 KB
testcase_11 AC 37 ms
53,252 KB
testcase_12 AC 37 ms
53,428 KB
testcase_13 AC 37 ms
52,444 KB
testcase_14 AC 38 ms
52,876 KB
testcase_15 RE -
testcase_16 AC 533 ms
79,976 KB
testcase_17 AC 272 ms
78,044 KB
testcase_18 RE -
testcase_19 AC 193 ms
78,908 KB
testcase_20 RE -
testcase_21 AC 38 ms
52,684 KB
testcase_22 AC 145 ms
77,220 KB
testcase_23 AC 81 ms
76,484 KB
testcase_24 AC 83 ms
76,740 KB
testcase_25 AC 89 ms
77,072 KB
testcase_26 AC 80 ms
76,176 KB
testcase_27 RE -
testcase_28 AC 95 ms
76,708 KB
testcase_29 AC 134 ms
77,100 KB
testcase_30 AC 141 ms
77,816 KB
testcase_31 AC 47 ms
63,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b=map(int,input().split())
s=input()

c=[]
for i in s:
  c.append(i)
  if len(c)>=3 and c[-3]+c[-2]+c[-1]=='con':
    c.pop()
    c.pop()
    c.pop()
    c.append('!')

c.append('a')
d=[]
tmp=0
for i in c:
  if i=='!':
    tmp+=1
  else:
    if tmp!=0:
      d.append(tmp)
    tmp=0

m=n//3+10
dp=[-10**9]*m
dp[0]=0
mx=0
for i in d:
  ndp=dp.copy()
  tmp=0
  while True:
    c1=tmp
    c2=(i-a*tmp)//b
    if c2<0:
      break
    for j in range(mx+1):
      ndp[j+c1]=max(ndp[j+c1],dp[j]+c2)
    tmp+=1
  mx+=c1
  dp=ndp

ans=0
#print(dp)
for i in range(1,m):
  if dp[i]>=i-1:
    ans=max(2*i-1,ans)
  if dp[i]>=i:
    ans=max(ans,2*i)

print(ans)
0