結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 22:59:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,906 ms / 5,000 ms
コード長 781 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 175,104 KB
最終ジャッジ日時 2024-12-21 23:29:23
合計ジャッジ時間 17,779 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 54 ms
64,256 KB
testcase_06 AC 49 ms
62,208 KB
testcase_07 AC 2,678 ms
175,104 KB
testcase_08 AC 1,772 ms
150,784 KB
testcase_09 AC 2,542 ms
175,104 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 37 ms
52,096 KB
testcase_15 AC 983 ms
82,304 KB
testcase_16 AC 817 ms
103,552 KB
testcase_17 AC 469 ms
88,832 KB
testcase_18 AC 2,340 ms
138,112 KB
testcase_19 AC 235 ms
93,440 KB
testcase_20 AC 2,906 ms
104,448 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 AC 224 ms
81,920 KB
testcase_23 AC 96 ms
77,184 KB
testcase_24 AC 98 ms
78,848 KB
testcase_25 AC 107 ms
79,872 KB
testcase_26 AC 103 ms
76,800 KB
testcase_27 AC 137 ms
76,416 KB
testcase_28 AC 113 ms
79,360 KB
testcase_29 AC 193 ms
82,816 KB
testcase_30 AC 167 ms
84,864 KB
testcase_31 AC 43 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n,a,b=map(int,input().split())
N=n
s=["#"]+list(input())
x=[]
l=1
nod=["o","n","c"]
while l<=n:
    if s[l]!="c":l+=1
    else:
        r=l
        while r<n:
            d=(r-l)%3
            if s[r+1]==nod[d]:
                r+=1
            else:
                break
        num=(r-l+1)//3
        if num>0:x.append(num)
        l=r+1
n=len(x)
if n==0:
    print(0)
    exit()

dp=[-2**60]*(N//3+10)

dp[0]=0
for i in range(n):
    newdp=[-2**60]*(N//3+10)
    for j in range(len(dp)):
        if dp[j]<0:break
        for k in range(10**9):
            if a*k>x[i]:break
            newdp[j+k]=max(newdp[j+k],dp[j]+(x[i]-a*k)//b)
    dp=newdp[:]
ans=0
for A in range(len(dp)):
    if A>dp[A]:
        ans=max(ans,2*dp[A]+1)
    else:
        ans=max(ans,2*A)
print(ans)


0