結果

問題 No.1677 mæx
ユーザー mkawa2mkawa2
提出日時 2021-09-10 22:41:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,533 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 10,940 KB
実行使用メモリ 15,176 KB
最終ジャッジ日時 2023-09-02 19:36:38
合計ジャッジ時間 2,996 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
8,892 KB
testcase_01 AC 20 ms
8,896 KB
testcase_02 AC 20 ms
8,840 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
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 = 10**20
md = 998244353
# md = 10**9+7

from functools import lru_cache
from collections import defaultdict

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

@lru_cache(None)
def solve(l,r,k):
    if r-l==1:
        return s[l]=="?" or int(s[l])==k
    m=mm[l]
    res=0
    if s[l+1]!="e":
        for a in range(3):
            for b in range(3):
                if max(a,b)!=k:continue
                res+=solve(l+4,m,a)*solve(m+1,r-1,b)%md
                res%=md
    if s[l+1]!="a":
        for a in range(3):
            for b in range(3):
                if mex(a,b)!=k:continue
                res+=solve(l+4,m,a)*solve(m+1,r-1,b)%md
                res%=md
    return res

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

mm=[-1]*n

d=0
dtol=defaultdict(int)

for i,c in enumerate(s):
    if c=="m":
        dtol[d]=i
        d+=1
    if c==")":
        d-=1
    if c==",":
        mm[dtol[d-1]]=i

print(solve(0,n,k))
0