結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 22:45:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 916 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 67,356 KB
最終ジャッジ日時 2024-06-01 13:45:35
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,112 KB
testcase_01 AC 40 ms
53,020 KB
testcase_02 AC 40 ms
52,328 KB
testcase_03 AC 40 ms
52,600 KB
testcase_04 AC 40 ms
53,772 KB
testcase_05 AC 46 ms
61,820 KB
testcase_06 AC 46 ms
61,704 KB
testcase_07 AC 55 ms
66,628 KB
testcase_08 AC 54 ms
65,748 KB
testcase_09 AC 55 ms
67,356 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
53,508 KB
testcase_13 AC 40 ms
54,136 KB
testcase_14 AC 40 ms
53,196 KB
testcase_15 AC 51 ms
64,340 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 55 ms
66,888 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 40 ms
53,784 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #


n,a,b=map(int,input().split())
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()
ans=0
for i in range(n):
    num=x[i]//(a+b)
    ans+=2*num
    x[i]-=num*(a+b)
if a==b:
    for i in range(n):
        ans+=x[i]//a
    print(ans)
elif a>b:
    B=0
    AB=0
    for i in range(n):
        if x[i]>=a:AB+=1
        elif x[i]>=b:B+=1
    if AB>=B:
        ans+=AB+B
    else:
        ans+=AB*2
    print(ans)
else:
    A=0
    AB=0
    for i in range(n):
        if x[i]>=b:AB+=1
        elif x[i]>=a:A+=1
    if AB>=A:
        ans+=AB+A
    elif AB+1==A:
        ans+=AB+A
    else:
        ans+=2*AB+1
    print(ans)

0