結果

問題 No.2172 SEARCH in the Text Editor
ユーザー titiatitia
提出日時 2022-12-24 03:34:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-04-29 06:08:44
合計ジャッジ時間 7,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 128 ms
78,080 KB
testcase_05 WA -
testcase_06 AC 85 ms
76,672 KB
testcase_07 AC 89 ms
78,080 KB
testcase_08 WA -
testcase_09 AC 129 ms
80,768 KB
testcase_10 AC 124 ms
81,024 KB
testcase_11 AC 102 ms
77,696 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 132 ms
81,152 KB
testcase_15 AC 107 ms
78,976 KB
testcase_16 AC 87 ms
77,312 KB
testcase_17 WA -
testcase_18 AC 131 ms
81,408 KB
testcase_19 AC 113 ms
80,000 KB
testcase_20 AC 107 ms
78,464 KB
testcase_21 AC 131 ms
81,664 KB
testcase_22 AC 100 ms
77,952 KB
testcase_23 AC 99 ms
77,696 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 142 ms
82,304 KB
testcase_30 AC 149 ms
83,200 KB
testcase_31 AC 150 ms
83,328 KB
testcase_32 AC 136 ms
84,352 KB
testcase_33 AC 137 ms
84,224 KB
testcase_34 AC 98 ms
77,952 KB
testcase_35 AC 99 ms
77,824 KB
testcase_36 AC 100 ms
77,952 KB
testcase_37 AC 100 ms
77,696 KB
testcase_38 AC 105 ms
78,080 KB
testcase_39 AC 119 ms
77,824 KB
testcase_40 AC 124 ms
81,280 KB
testcase_41 AC 146 ms
82,688 KB
testcase_42 AC 146 ms
83,456 KB
testcase_43 AC 147 ms
83,072 KB
testcase_44 AC 132 ms
83,968 KB
testcase_45 AC 132 ms
84,224 KB
testcase_46 AC 117 ms
81,024 KB
testcase_47 AC 100 ms
78,464 KB
testcase_48 AC 104 ms
78,336 KB
testcase_49 AC 125 ms
81,408 KB
testcase_50 AC 124 ms
80,896 KB
testcase_51 AC 100 ms
77,824 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

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

    if len(A)==1:
        COUNT[i]=A[0].count(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]+k.count(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])
0