結果

問題 No.2172 SEARCH in the Text Editor
ユーザー roarisroaris
提出日時 2022-12-24 13:48:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,107 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,944 KB
最終ジャッジ日時 2024-04-29 06:11:12
合計ジャッジ時間 10,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 156 ms
85,248 KB
testcase_05 WA -
testcase_06 AC 140 ms
81,280 KB
testcase_07 AC 147 ms
83,456 KB
testcase_08 WA -
testcase_09 AC 178 ms
88,064 KB
testcase_10 AC 172 ms
87,424 KB
testcase_11 AC 117 ms
80,640 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 179 ms
91,776 KB
testcase_15 AC 134 ms
82,816 KB
testcase_16 AC 126 ms
83,200 KB
testcase_17 WA -
testcase_18 AC 173 ms
90,400 KB
testcase_19 AC 186 ms
90,752 KB
testcase_20 AC 139 ms
82,176 KB
testcase_21 AC 162 ms
89,300 KB
testcase_22 AC 130 ms
86,016 KB
testcase_23 AC 129 ms
86,016 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 218 ms
95,232 KB
testcase_30 AC 200 ms
93,804 KB
testcase_31 AC 201 ms
94,696 KB
testcase_32 AC 159 ms
91,520 KB
testcase_33 AC 155 ms
91,648 KB
testcase_34 AC 126 ms
85,760 KB
testcase_35 AC 127 ms
85,888 KB
testcase_36 AC 131 ms
86,272 KB
testcase_37 AC 129 ms
86,144 KB
testcase_38 AC 132 ms
85,504 KB
testcase_39 AC 147 ms
84,992 KB
testcase_40 AC 228 ms
95,512 KB
testcase_41 AC 218 ms
95,944 KB
testcase_42 AC 203 ms
94,596 KB
testcase_43 AC 198 ms
94,600 KB
testcase_44 AC 154 ms
92,160 KB
testcase_45 AC 155 ms
91,904 KB
testcase_46 AC 145 ms
84,992 KB
testcase_47 AC 132 ms
83,584 KB
testcase_48 AC 134 ms
84,224 KB
testcase_49 AC 167 ms
88,428 KB
testcase_50 AC 166 ms
87,736 KB
testcase_51 AC 130 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
T = input()[:-1]
L = []
MOD = 998244353

for _ in range(N):
    I = list(input().split())
    
    if len(I)==1:
        S = I[0]
        
        if len(S)>=len(T):
            L.append((S.count(T), S[:len(T)-1], S[::-1][:len(T)-1][::-1], 1))
        else:
            L.append((S.count(T), S, S, 0))
    else:
        i, j = int(I[1])-1, int(I[2])-1
        c = (L[i][0]+L[j][0]+(''.join([L[i][2], L[j][1]]).count(T)))%MOD
        
        if L[i][3]==0 and L[j][3]==0:
            S = ''.join([L[i][1], L[j][1]])
            
            if len(S)>=len(T):
                L.append((c, S[:len(T)-1], S[::-1][:len(T)-1][::-1], 1))
            else:
                L.append((c, S, S, 0))
        elif L[i][3]==0 and L[j][3]==1:
            S = ''.join([L[i][1], L[j][1]])
            L.append((c, S[:len(T)-1], L[j][2], 1))
        elif L[i][3]==1 and L[j][3]==0:
            S = ''.join([L[i][2], L[j][1]])
            L.append((c, L[i][1], S[::-1][:len(T)-1][::-1], 1))
        else:
            L.append((c, L[i][1], L[j][2], 1))

print(L[-1][0])
0