結果
問題 | No.1677 mæx |
ユーザー | mkawa2 |
提出日時 | 2024-06-12 15:29:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,709 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,032 KB |
最終ジャッジ日時 | 2024-06-12 15:29:11 |
合計ジャッジ時間 | 3,272 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,624 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,752 KB |
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 | AC | 27 ms
10,496 KB |
testcase_20 | AC | 28 ms
10,752 KB |
testcase_21 | RE | - |
ソースコード
import sys sys.setrecursionlimit(1000006) 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 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): # print(l,r,k,s[l:r]) 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)*1)