結果

問題 No.2172 SEARCH in the Text Editor
ユーザー titiatitia
提出日時 2022-12-24 03:47:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,765 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-11-18 07:15:55
合計ジャッジ時間 24,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 1,765 ms
16,256 KB
testcase_04 AC 1,716 ms
16,256 KB
testcase_05 AC 1,672 ms
16,256 KB
testcase_06 AC 121 ms
12,032 KB
testcase_07 AC 100 ms
11,648 KB
testcase_08 AC 105 ms
11,776 KB
testcase_09 AC 236 ms
16,640 KB
testcase_10 AC 223 ms
16,256 KB
testcase_11 AC 152 ms
14,208 KB
testcase_12 AC 140 ms
12,160 KB
testcase_13 AC 167 ms
12,416 KB
testcase_14 AC 251 ms
16,384 KB
testcase_15 AC 160 ms
14,720 KB
testcase_16 AC 130 ms
12,288 KB
testcase_17 AC 133 ms
12,160 KB
testcase_18 AC 267 ms
17,536 KB
testcase_19 AC 182 ms
12,672 KB
testcase_20 AC 127 ms
13,184 KB
testcase_21 AC 300 ms
18,176 KB
testcase_22 AC 308 ms
16,256 KB
testcase_23 AC 346 ms
16,256 KB
testcase_24 AC 403 ms
16,384 KB
testcase_25 AC 403 ms
16,384 KB
testcase_26 AC 1,669 ms
16,384 KB
testcase_27 AC 1,697 ms
16,256 KB
testcase_28 AC 220 ms
13,056 KB
testcase_29 AC 259 ms
16,768 KB
testcase_30 AC 282 ms
17,920 KB
testcase_31 AC 278 ms
17,920 KB
testcase_32 AC 298 ms
19,328 KB
testcase_33 AC 293 ms
19,200 KB
testcase_34 AC 302 ms
16,256 KB
testcase_35 AC 338 ms
16,256 KB
testcase_36 AC 401 ms
16,384 KB
testcase_37 AC 400 ms
16,256 KB
testcase_38 AC 1,677 ms
16,256 KB
testcase_39 AC 1,652 ms
16,384 KB
testcase_40 AC 217 ms
13,056 KB
testcase_41 AC 264 ms
16,512 KB
testcase_42 AC 278 ms
17,920 KB
testcase_43 AC 278 ms
17,920 KB
testcase_44 AC 294 ms
19,200 KB
testcase_45 AC 296 ms
19,200 KB
testcase_46 AC 209 ms
15,872 KB
testcase_47 AC 158 ms
14,464 KB
testcase_48 AC 166 ms
14,720 KB
testcase_49 AC 274 ms
17,536 KB
testcase_50 AC 254 ms
17,024 KB
testcase_51 AC 154 ms
14,336 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