結果

問題 No.2172 SEARCH in the Text Editor
ユーザー 👑 p-adicp-adic
提出日時 2023-06-23 12:43:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 105,660 KB
最終ジャッジ日時 2024-06-30 17:39:53
合計ジャッジ時間 15,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
74,372 KB
testcase_01 AC 52 ms
75,676 KB
testcase_02 AC 51 ms
75,252 KB
testcase_03 AC 342 ms
98,844 KB
testcase_04 AC 330 ms
99,112 KB
testcase_05 AC 329 ms
98,756 KB
testcase_06 AC 171 ms
86,564 KB
testcase_07 AC 181 ms
86,772 KB
testcase_08 AC 181 ms
87,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 171 ms
86,968 KB
testcase_12 AC 213 ms
92,100 KB
testcase_13 AC 232 ms
95,476 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 193 ms
88,432 KB
testcase_17 AC 206 ms
91,752 KB
testcase_18 AC 246 ms
100,796 KB
testcase_19 AC 243 ms
98,768 KB
testcase_20 AC 184 ms
89,416 KB
testcase_21 AC 247 ms
99,136 KB
testcase_22 AC 212 ms
96,848 KB
testcase_23 AC 216 ms
97,348 KB
testcase_24 AC 204 ms
96,840 KB
testcase_25 AC 204 ms
98,180 KB
testcase_26 AC 333 ms
98,936 KB
testcase_27 AC 320 ms
98,852 KB
testcase_28 AC 283 ms
103,084 KB
testcase_29 WA -
testcase_30 AC 278 ms
102,900 KB
testcase_31 WA -
testcase_32 AC 287 ms
105,148 KB
testcase_33 AC 289 ms
105,152 KB
testcase_34 AC 212 ms
96,764 KB
testcase_35 AC 224 ms
97,676 KB
testcase_36 AC 217 ms
98,428 KB
testcase_37 AC 216 ms
97,928 KB
testcase_38 AC 343 ms
98,980 KB
testcase_39 AC 342 ms
98,804 KB
testcase_40 AC 281 ms
103,496 KB
testcase_41 AC 284 ms
103,108 KB
testcase_42 AC 302 ms
104,648 KB
testcase_43 AC 280 ms
103,332 KB
testcase_44 AC 293 ms
105,660 KB
testcase_45 AC 285 ms
105,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)
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],(U[3]+C(U[4]+V[2])+V[3])%P,V[4]]]
	else:S+=[[sum(O(s[i])*p[i]for i in R(l))%Q,p[l],s[:min(l,L-1)],C(s),s[max(0,l-L+1):]]]
print(S[-1][3])
0