結果

問題 No.1677 mæx
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2021-09-11 00:00:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 135,460 KB
最終ジャッジ日時 2024-06-12 07:04:54
合計ジャッジ時間 7,987 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 388 ms
119,692 KB
testcase_05 AC 392 ms
121,408 KB
testcase_06 AC 383 ms
119,780 KB
testcase_07 AC 395 ms
119,260 KB
testcase_08 AC 397 ms
119,520 KB
testcase_09 AC 397 ms
120,796 KB
testcase_10 AC 387 ms
119,420 KB
testcase_11 AC 402 ms
119,880 KB
testcase_12 AC 408 ms
119,456 KB
testcase_13 AC 385 ms
119,272 KB
testcase_14 AC 410 ms
119,656 KB
testcase_15 AC 418 ms
119,320 KB
testcase_16 AC 415 ms
119,536 KB
testcase_17 AC 409 ms
119,336 KB
testcase_18 AC 443 ms
119,716 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 45 ms
51,584 KB
testcase_21 AC 429 ms
135,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
s=list(input())
n=len(s)
p=int(input())
stack=[]
ktok={}
mod=998244353
def mex(x,y):
    res=set()
    res.add(x)
    res.add(y)
    for i in range(3):
        if i not in res:return i

for i in range(n):
    if s[i]=="(":stack.append(i)
    if s[i]==")":
        j=stack.pop()
        ktok[j]=i

ktot={}
for i in range(n):
    if s[i]=="(":stack.append(i)
    if s[i]==",":
        j=stack.pop()
        ktot[j]=i

def f(l,r):
    if l==r:
        res=[0,0,0]
        if s[l]=="?":
            res[0]=1
            res[1]=1
            res[2]=1
        else:
            res[int(s[l])]=1
        return res
    dp1=f(l+4,ktot[l+3]-1)
    dp2=f(ktot[l+3]+1,r-1)
    res=[0,0,0]
    for i in range(3):
        for j in range(3):
            if s[l+1]=="a" or s[l+1]=="?":
                res[max(i,j)]+=dp1[i]*dp2[j]%mod
                res[max(i, j)]%=mod
            if s[l + 1] == "e" or s[l + 1] == "?":
                res[mex(i, j)] += dp1[i] * dp2[j] % mod
                res[mex(i, j)] %= mod
    return res

print(f(0,n-1)[p])


0