結果

問題 No.2172 SEARCH in the Text Editor
ユーザー titiatitia
提出日時 2022-12-24 03:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-04-29 06:10:26
合計ジャッジ時間 10,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 415 ms
78,208 KB
testcase_04 AC 230 ms
78,080 KB
testcase_05 AC 232 ms
78,208 KB
testcase_06 AC 103 ms
77,312 KB
testcase_07 AC 129 ms
78,976 KB
testcase_08 AC 132 ms
78,976 KB
testcase_09 AC 168 ms
82,560 KB
testcase_10 AC 166 ms
81,408 KB
testcase_11 AC 134 ms
79,616 KB
testcase_12 AC 139 ms
79,488 KB
testcase_13 AC 150 ms
80,384 KB
testcase_14 AC 183 ms
82,816 KB
testcase_15 AC 147 ms
79,616 KB
testcase_16 AC 116 ms
77,952 KB
testcase_17 AC 140 ms
79,232 KB
testcase_18 AC 180 ms
82,688 KB
testcase_19 AC 145 ms
80,640 KB
testcase_20 AC 132 ms
79,232 KB
testcase_21 AC 175 ms
83,328 KB
testcase_22 AC 123 ms
78,208 KB
testcase_23 AC 127 ms
78,336 KB
testcase_24 AC 130 ms
78,080 KB
testcase_25 AC 134 ms
78,208 KB
testcase_26 AC 232 ms
78,464 KB
testcase_27 AC 232 ms
78,208 KB
testcase_28 AC 180 ms
81,920 KB
testcase_29 AC 205 ms
82,688 KB
testcase_30 AC 236 ms
84,224 KB
testcase_31 AC 225 ms
84,244 KB
testcase_32 AC 170 ms
84,864 KB
testcase_33 AC 173 ms
84,992 KB
testcase_34 AC 126 ms
78,336 KB
testcase_35 AC 127 ms
78,208 KB
testcase_36 AC 133 ms
78,208 KB
testcase_37 AC 132 ms
78,080 KB
testcase_38 AC 226 ms
78,336 KB
testcase_39 AC 235 ms
78,208 KB
testcase_40 AC 177 ms
81,920 KB
testcase_41 AC 204 ms
82,944 KB
testcase_42 AC 203 ms
83,840 KB
testcase_43 AC 208 ms
83,968 KB
testcase_44 AC 173 ms
84,864 KB
testcase_45 AC 172 ms
84,608 KB
testcase_46 AC 151 ms
81,664 KB
testcase_47 AC 135 ms
79,872 KB
testcase_48 AC 137 ms
80,384 KB
testcase_49 AC 176 ms
83,328 KB
testcase_50 AC 161 ms
81,920 KB
testcase_51 AC 132 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N=int(input())
T=input().strip()
LEN=len(T)

COUNT=[-1]*N
BEGIN=[""]*N
END=[""]*N

def str_count(S,T):
    ANS=0
    for i in range(len(S)):
        if S[i:i+len(T)]==T:
            ANS+=1
    return ANS

for i in range(N):
    A=input().split()

    if len(A)==1:
        COUNT[i]=str_count(A[0],T)

        if LEN!=1:
            BEGIN[i]=A[0][:LEN-1]
            END[i]=A[0][-LEN+1:]
    else:
        x,y=A[1],A[2]
        x=int(x)-1
        y=int(y)-1

        k=END[x]+BEGIN[y]
        COUNT[i]=(COUNT[x]+COUNT[y]+str_count(k,T))%mod

        if len(BEGIN[x])<LEN-1:
            BEGIN[i]=(BEGIN[x]+BEGIN[y])[:LEN-1]
        else:
            BEGIN[i]=BEGIN[x]

        if len(END[y])<LEN-1:
            END[i]=(END[x]+END[y])[-LEN+1:]
        else:
            END[i]=END[y]
        
print(COUNT[-1]%mod)
0