結果

問題 No.1677 mæx
ユーザー 👑 rin204rin204
提出日時 2022-01-25 18:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 81,068 KB
最終ジャッジ日時 2024-05-09 19:37:37
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,224 KB
testcase_01 AC 37 ms
53,352 KB
testcase_02 AC 37 ms
52,656 KB
testcase_03 AC 37 ms
52,484 KB
testcase_04 AC 167 ms
78,628 KB
testcase_05 AC 167 ms
78,760 KB
testcase_06 AC 162 ms
78,556 KB
testcase_07 AC 165 ms
79,024 KB
testcase_08 AC 172 ms
79,488 KB
testcase_09 AC 164 ms
79,980 KB
testcase_10 AC 171 ms
79,340 KB
testcase_11 AC 173 ms
79,804 KB
testcase_12 AC 169 ms
79,204 KB
testcase_13 AC 177 ms
78,932 KB
testcase_14 AC 153 ms
77,888 KB
testcase_15 AC 150 ms
77,856 KB
testcase_16 AC 156 ms
77,980 KB
testcase_17 AC 151 ms
78,140 KB
testcase_18 AC 152 ms
78,060 KB
testcase_19 AC 37 ms
53,188 KB
testcase_20 AC 39 ms
52,276 KB
testcase_21 AC 158 ms
81,068 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