結果

問題 No.1677 mæx
ユーザー 👑 rin204rin204
提出日時 2022-01-25 18:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 81,064 KB
最終ジャッジ日時 2024-12-17 12:50:41
合計ジャッジ時間 4,291 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,196 KB
testcase_01 AC 37 ms
54,016 KB
testcase_02 AC 38 ms
53,136 KB
testcase_03 AC 38 ms
53,784 KB
testcase_04 AC 157 ms
79,156 KB
testcase_05 AC 161 ms
78,880 KB
testcase_06 AC 161 ms
78,820 KB
testcase_07 AC 163 ms
78,932 KB
testcase_08 AC 170 ms
79,872 KB
testcase_09 AC 164 ms
79,516 KB
testcase_10 AC 168 ms
79,592 KB
testcase_11 AC 166 ms
79,688 KB
testcase_12 AC 162 ms
79,144 KB
testcase_13 AC 163 ms
79,264 KB
testcase_14 AC 143 ms
77,948 KB
testcase_15 AC 145 ms
77,808 KB
testcase_16 AC 154 ms
78,256 KB
testcase_17 AC 143 ms
78,176 KB
testcase_18 AC 151 ms
78,116 KB
testcase_19 AC 39 ms
54,048 KB
testcase_20 AC 38 ms
53,100 KB
testcase_21 AC 153 ms
81,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

S = input()
S = S.replace("max", "a")
S = S.replace("mex", "e")
S = S.replace("m?x", "o")
S = S.replace(",", "")
S = S.replace("(", "")
S = S.replace(")", "")
S = S[::-1]

def mex(i, j):
    se = {i, j}
    x = 0
    while x in se:
        x += 1
    return x

stack = []
for s in S:
    if s == "2":
        stack.append([0, 0, 1])
    elif s == "1":
        stack.append([0, 1, 0])
    elif s == "0":
        stack.append([1, 0, 0])
    elif s == "?":
        stack.append([1, 1, 1])
    elif s == "a":
        A = stack.pop()
        B = stack.pop()
        tmp = [0] * 3
        for i in range(3):
            for j in range(3):
                tmp[max(i, j)] += A[i] * B[j]
                tmp[max(i, j)] %= MOD
        stack.append(tmp)
    elif s == "e":
        A = stack.pop()
        B = stack.pop()
        tmp = [0] * 3
        for i in range(3):
            for j in range(3):
                tmp[mex(i, j)] += A[i] * B[j]
                tmp[mex(i, j)] %= MOD
        stack.append(tmp)
    else:
        A = stack.pop()
        B = stack.pop()
        tmp = [0] * 3
        for i in range(3):
            for j in range(3):
                tmp[max(i, j)] += A[i] * B[j]
                tmp[max(i, j)] %= MOD
                tmp[mex(i, j)] += A[i] * B[j]
                tmp[mex(i, j)] %= MOD
        stack.append(tmp)
    

k = int(input())
print(stack[0][k])
0