結果

問題 No.1677 mæx
ユーザー mkawa2mkawa2
提出日時 2024-06-12 17:35:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 1,794 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,420 KB
最終ジャッジ日時 2024-06-12 17:35:57
合計ジャッジ時間 5,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,976 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 AC 37 ms
53,068 KB
testcase_03 AC 37 ms
52,500 KB
testcase_04 AC 210 ms
92,536 KB
testcase_05 AC 201 ms
94,496 KB
testcase_06 AC 205 ms
92,232 KB
testcase_07 AC 197 ms
92,600 KB
testcase_08 AC 234 ms
94,216 KB
testcase_09 AC 218 ms
92,780 KB
testcase_10 AC 214 ms
92,140 KB
testcase_11 AC 209 ms
93,392 KB
testcase_12 AC 215 ms
92,276 KB
testcase_13 AC 236 ms
92,332 KB
testcase_14 AC 227 ms
95,420 KB
testcase_15 AC 230 ms
94,184 KB
testcase_16 AC 220 ms
92,496 KB
testcase_17 AC 223 ms
94,448 KB
testcase_18 AC 244 ms
94,116 KB
testcase_19 AC 34 ms
52,284 KB
testcase_20 AC 36 ms
52,612 KB
testcase_21 AC 220 ms
95,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(5000006)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 31)
# inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def mex(a,b):
    for i in range(3):
        if i!=a and i!=b:
            return i

s=SI()
k=II()
n=len(s)

l2r=[-1]*n
st=[]
for i,c in enumerate(s):
    if c=="m":
        st.append(i)
    if c==")":
        j=st.pop()
        l2r[j]=i+1

st=[(0,n)]
dp={}
while st:
    l,r=st.pop()
    if r-l==1:
        if s[l]=="?":
            dp[l,r]=[1,1,1]
        else:
            a=int(s[l])
            dp[l,r]=[0,0,0]
            dp[l,r][a]=1
    else:
        m=l2r[l+4]
        if m==-1:m=l+5
        if (l+4, m) in dp:
            cur=[0]*3
            if s[l+1]!="a":
                for a in range(3):
                    for b in range(3):
                        cur[mex(a,b)]+=dp[l+4,m][a]*dp[m+1,r-1][b]%md
            if s[l+1]!="e":
                for a in range(3):
                    for b in range(3):
                        cur[max(a,b)]+=dp[l+4,m][a]*dp[m+1,r-1][b]%md
            for i in range(3):cur[i]%=md
            dp[l,r]=cur
        else:
            st+=[(l,r),(l+4,m),(m+1,r-1)]

print(dp[0,n][k])
0