結果

問題 No.2172 SEARCH in the Text Editor
ユーザー 👑 p-adicp-adic
提出日時 2023-06-23 12:16:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 652 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 147,196 KB
最終ジャッジ日時 2024-06-30 17:17:26
合計ジャッジ時間 18,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
73,984 KB
testcase_01 AC 60 ms
74,240 KB
testcase_02 AC 53 ms
74,240 KB
testcase_03 AC 361 ms
99,372 KB
testcase_04 AC 354 ms
98,888 KB
testcase_05 AC 355 ms
99,232 KB
testcase_06 AC 187 ms
90,872 KB
testcase_07 AC 194 ms
88,184 KB
testcase_08 AC 186 ms
89,184 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 255 ms
103,404 KB
testcase_12 AC 233 ms
95,144 KB
testcase_13 AC 256 ms
98,688 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 211 ms
94,964 KB
testcase_17 AC 224 ms
92,424 KB
testcase_18 AC 318 ms
107,592 KB
testcase_19 AC 278 ms
99,492 KB
testcase_20 AC 200 ms
90,556 KB
testcase_21 AC 393 ms
132,996 KB
testcase_22 AC 229 ms
97,800 KB
testcase_23 AC 240 ms
98,284 KB
testcase_24 AC 237 ms
97,844 KB
testcase_25 AC 242 ms
99,268 KB
testcase_26 AC 344 ms
99,440 KB
testcase_27 AC 333 ms
99,592 KB
testcase_28 AC 307 ms
106,936 KB
testcase_29 WA -
testcase_30 AC 344 ms
110,328 KB
testcase_31 WA -
testcase_32 AC 489 ms
147,196 KB
testcase_33 AC 448 ms
146,556 KB
testcase_34 AC 209 ms
98,084 KB
testcase_35 AC 240 ms
98,212 KB
testcase_36 AC 249 ms
99,192 KB
testcase_37 AC 245 ms
99,552 KB
testcase_38 AC 336 ms
99,308 KB
testcase_39 AC 346 ms
99,688 KB
testcase_40 AC 300 ms
106,980 KB
testcase_41 AC 319 ms
107,544 KB
testcase_42 AC 351 ms
110,540 KB
testcase_43 AC 351 ms
110,908 KB
testcase_44 AC 462 ms
146,800 KB
testcase_45 AC 468 ms
146,420 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R,O=input,range,ord
N=int(I())
T=I()
P=998244353
Q=10**9+7
p=[1]
for n in R(11**5):p+=[p[-1]*P%Q]
p[-1]=pow(P,-1,Q)
L=len(T)
u=v=0
A=[0]*L
B=[0]*L
for i in R(L):
	A[i]=u=(u+O(T[i])*p[i])%Q
	B[i]=v=(O(T[L-1-i])+v*P)%Q
S=[]
for n in R(N):
	s=I().split()
	u=v=m=0
	c,U,V=s[0],[0]*L,[0]*L
	l=len(c)
	for i in R(l):
		t,v=O(c[i]),(O(c[l-1-i])+v*P)%Q
		u=(u+t*p[i])%Q
		if i<L:U[i],w,V[i]=u==B[i],u,v==A[i]
		else:w=((w-O(c[i-L]))*p[-1]+t*p[L-1])%Q
		m+=w==A[-1]
	if c=="~":
		U,V=S[int(s[1])-1],S[int(s[2])-1]
		S+=[[(U[0]+V[0]*U[1])%Q,U[1]*V[1]%Q,U[2],(U[3]+sum(U[4][i]*V[2][L-2-i]for i in R(L-1))+V[3])%P,V[4]]]
	else:S+=[[u,p[l],U,m,V]]
print(S[-1][3])
0