結果

問題 No.2172 SEARCH in the Text Editor
ユーザー 👑 p-adicp-adic
提出日時 2023-06-23 13:28:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 120,876 KB
最終ジャッジ日時 2024-06-30 18:19:57
合計ジャッジ時間 15,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
73,576 KB
testcase_01 AC 56 ms
74,116 KB
testcase_02 AC 54 ms
74,404 KB
testcase_03 AC 404 ms
120,420 KB
testcase_04 AC 389 ms
120,696 KB
testcase_05 AC 383 ms
120,172 KB
testcase_06 AC 175 ms
87,512 KB
testcase_07 AC 183 ms
87,664 KB
testcase_08 AC 192 ms
91,204 KB
testcase_09 AC 261 ms
102,996 KB
testcase_10 AC 244 ms
100,172 KB
testcase_11 AC 192 ms
90,228 KB
testcase_12 AC 223 ms
96,608 KB
testcase_13 AC 245 ms
100,992 KB
testcase_14 AC 286 ms
107,348 KB
testcase_15 AC 210 ms
92,832 KB
testcase_16 AC 200 ms
89,736 KB
testcase_17 AC 211 ms
93,384 KB
testcase_18 AC 284 ms
106,288 KB
testcase_19 AC 251 ms
104,300 KB
testcase_20 AC 203 ms
89,820 KB
testcase_21 AC 280 ms
103,588 KB
testcase_22 AC 227 ms
109,236 KB
testcase_23 AC 246 ms
110,548 KB
testcase_24 AC 244 ms
109,464 KB
testcase_25 AC 246 ms
109,916 KB
testcase_26 AC 392 ms
120,128 KB
testcase_27 AC 383 ms
120,876 KB
testcase_28 AC 295 ms
109,496 KB
testcase_29 AC 308 ms
110,148 KB
testcase_30 AC 313 ms
110,296 KB
testcase_31 AC 313 ms
110,028 KB
testcase_32 AC 305 ms
110,916 KB
testcase_33 AC 309 ms
110,244 KB
testcase_34 AC 235 ms
109,860 KB
testcase_35 AC 240 ms
108,160 KB
testcase_36 AC 244 ms
110,088 KB
testcase_37 AC 247 ms
108,988 KB
testcase_38 AC 387 ms
120,272 KB
testcase_39 AC 390 ms
120,496 KB
testcase_40 AC 293 ms
110,100 KB
testcase_41 AC 304 ms
108,996 KB
testcase_42 AC 321 ms
109,760 KB
testcase_43 AC 313 ms
110,008 KB
testcase_44 AC 311 ms
110,372 KB
testcase_45 AC 309 ms
110,788 KB
testcase_46 AC 234 ms
95,628 KB
testcase_47 AC 204 ms
90,568 KB
testcase_48 AC 206 ms
90,272 KB
testcase_49 AC 277 ms
102,960 KB
testcase_50 AC 263 ms
99,752 KB
testcase_51 AC 197 ms
91,072 KB
権限があれば一括ダウンロードができます

ソースコード

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)
t=sum(O(T[i])*p[i]for i in R(L))%Q
def C(s):
	a=u=0
	for i in R(len(s)):
		if i<L:u=(u+O(s[i])*p[i])%Q
		else:u=((u-O(s[i-L]))*p[-1]+O(s[i])*p[L-1])%Q
		a+=u==t
	return a
S=[]
for n in R(N):
	X=I().split()
	s,U,V=X[0],[0]*L,[0]*L
	l=len(s)
	if s=="~":
		U,V=S[int(X[1])-1],S[int(X[2])-1]
		S+=[[(U[0]+V[0]*U[1])%Q,U[1]*V[1]%Q,(U[2]+V[2])[:L-1],(U[3]+C(U[4]+V[2])+V[3])%P,[(U[4]+V[4])[1-L:],""][L<2]]]
	else:S+=[[sum(O(s[i])*p[i]for i in R(l))%Q,p[l],s[:L-1],C(s),[s[1-L:],""][L<2]]]
print(S[-1][3])
0