結果

問題 No.1677 mæx
ユーザー とりゐとりゐ
提出日時 2023-06-06 15:00:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 124,800 KB
最終ジャッジ日時 2024-06-09 06:14:24
合計ジャッジ時間 5,211 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 236 ms
108,160 KB
testcase_05 AC 249 ms
110,464 KB
testcase_06 AC 251 ms
107,648 KB
testcase_07 AC 237 ms
107,776 KB
testcase_08 AC 239 ms
108,544 KB
testcase_09 AC 238 ms
108,544 KB
testcase_10 AC 245 ms
108,544 KB
testcase_11 AC 232 ms
108,416 KB
testcase_12 AC 233 ms
108,544 KB
testcase_13 AC 230 ms
108,288 KB
testcase_14 AC 224 ms
107,648 KB
testcase_15 AC 224 ms
107,008 KB
testcase_16 AC 223 ms
107,520 KB
testcase_17 AC 223 ms
107,392 KB
testcase_18 AC 219 ms
107,264 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 38 ms
51,584 KB
testcase_21 AC 244 ms
124,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(3*10**5)

mod=998244353
s=input()
n=len(s)

mex=[[1,2,1],
     [2,0,0],
     [1,0,0]]

idx=0
def calc():
  global idx
  if s[idx] in '012?':
    dp=[0]*3
    if s[idx] in '012':
      dp[int(s[idx])]=1
    else:
      dp=[1]*3
    idx+=1
    return dp
  c=s[idx+1]
  idx+=4
  dpL=calc()
  idx+=1
  dpR=calc()
  dp=[0]*3
  if c=='a' or c=='?':
    for i in range(3):
      for j in range(3):
        dp[max(i,j)]+=dpL[i]*dpR[j]
  if c=='e' or c=='?':
    for i in range(3):
      for j in range(3):
        dp[mex[i][j]]+=dpL[i]*dpR[j]
  idx+=1
  return [i%mod for i in dp]

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