結果

問題 No.2172 SEARCH in the Text Editor
ユーザー titiatitia
提出日時 2022-12-24 03:34:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 84,492 KB
最終ジャッジ日時 2024-11-18 07:15:13
合計ジャッジ時間 6,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,892 KB
testcase_01 AC 32 ms
52,440 KB
testcase_02 AC 34 ms
52,596 KB
testcase_03 WA -
testcase_04 AC 103 ms
78,248 KB
testcase_05 WA -
testcase_06 AC 65 ms
77,484 KB
testcase_07 AC 69 ms
77,844 KB
testcase_08 WA -
testcase_09 AC 99 ms
81,368 KB
testcase_10 AC 93 ms
80,992 KB
testcase_11 AC 76 ms
77,972 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 101 ms
81,292 KB
testcase_15 AC 84 ms
78,772 KB
testcase_16 AC 66 ms
77,632 KB
testcase_17 WA -
testcase_18 AC 104 ms
81,464 KB
testcase_19 AC 85 ms
80,188 KB
testcase_20 AC 79 ms
78,504 KB
testcase_21 AC 96 ms
81,480 KB
testcase_22 AC 79 ms
78,132 KB
testcase_23 AC 76 ms
78,000 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 106 ms
82,496 KB
testcase_30 AC 113 ms
83,572 KB
testcase_31 AC 111 ms
83,260 KB
testcase_32 AC 98 ms
84,384 KB
testcase_33 AC 101 ms
84,376 KB
testcase_34 AC 76 ms
78,028 KB
testcase_35 AC 76 ms
77,880 KB
testcase_36 AC 77 ms
78,188 KB
testcase_37 AC 78 ms
78,032 KB
testcase_38 AC 84 ms
77,996 KB
testcase_39 AC 96 ms
77,840 KB
testcase_40 AC 95 ms
81,508 KB
testcase_41 AC 109 ms
82,792 KB
testcase_42 AC 113 ms
83,648 KB
testcase_43 AC 114 ms
83,392 KB
testcase_44 AC 99 ms
84,240 KB
testcase_45 AC 97 ms
84,492 KB
testcase_46 AC 84 ms
80,972 KB
testcase_47 AC 76 ms
78,032 KB
testcase_48 AC 75 ms
78,124 KB
testcase_49 AC 93 ms
81,080 KB
testcase_50 AC 91 ms
81,244 KB
testcase_51 AC 73 ms
77,996 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