結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 52 ms
64,256 KB
testcase_06 AC 47 ms
62,208 KB
testcase_07 AC 2,866 ms
175,028 KB
testcase_08 AC 1,956 ms
150,592 KB
testcase_09 AC 2,840 ms
175,208 KB
testcase_10 AC 37 ms
53,036 KB
testcase_11 AC 38 ms
53,096 KB
testcase_12 AC 39 ms
53,776 KB
testcase_13 AC 40 ms
52,616 KB
testcase_14 AC 40 ms
52,364 KB
testcase_15 AC 1,074 ms
82,560 KB
testcase_16 AC 904 ms
103,624 KB
testcase_17 AC 502 ms
88,948 KB
testcase_18 AC 2,627 ms
137,984 KB
testcase_19 AC 278 ms
93,272 KB
testcase_20 AC 3,172 ms
104,832 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 249 ms
81,920 KB
testcase_23 AC 93 ms
77,440 KB
testcase_24 AC 102 ms
78,664 KB
testcase_25 AC 112 ms
80,452 KB
testcase_26 AC 103 ms
76,864 KB
testcase_27 AC 137 ms
76,420 KB
testcase_28 AC 121 ms
79,356 KB
testcase_29 AC 213 ms
83,016 KB
testcase_30 AC 182 ms
84,992 KB
testcase_31 AC 43 ms
59,848 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