結果
問題 | No.1677 mæx |
ユーザー | googol_S0 |
提出日時 | 2021-09-10 22:02:10 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,268 KB |
実行使用メモリ | 101,892 KB |
最終ジャッジ日時 | 2024-06-12 00:06:48 |
合計ジャッジ時間 | 3,431 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 39 ms
52,736 KB |
testcase_03 | RE | - |
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 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
S=input() K=int(input()) mod=998244353 def f(x): if type(x)==type(0): r=[0]*3 if x==3: return (1,1,1) r[x]=1 return tuple(x) return x def mAx(a,b): r=[0]*3 a=f(a) b=f(b) for i in range(3): for j in range(3): r[max(i,j)]=(r[max(i,j)]+a[i]*b[j])%mod return tuple(r) def mex(a,b): if min(a,b)>0: return 0 elif a==0 and b==0: return 1 elif max(a,b)<2: return 2 else: return 1 MEX=[[mex(i,j) for j in range(3)]for i in range(3)] def mEx(a,b): a=f(a) b=f(b) r=[0]*3 for i in range(3): for j in range(3): r[MEX[i][j]]=(r[MEX[i][j]]+a[i]*b[j])%mod return tuple(r) def m3x(a,b): a=f(a) b=f(b) r=[0]*3 for i in range(3): for j in range(3): r[MEX[i][j]]=(r[MEX[i][j]]+a[i]*b[j])%mod r[max(i,j)]=(r[max(i,j)]+a[i]*b[j])%mod return tuple(r) S=S.replace('a','A').replace('e','E').replace('?','3') print(eval(S)[K])