結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 WA -
testcase_04 AC 150 ms
84,608 KB
testcase_05 WA -
testcase_06 AC 108 ms
82,176 KB
testcase_07 AC 105 ms
81,152 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 99 ms
81,152 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 118 ms
82,048 KB
testcase_17 WA -
testcase_18 AC 149 ms
90,624 KB
testcase_19 AC 142 ms
87,552 KB
testcase_20 AC 110 ms
81,664 KB
testcase_21 AC 147 ms
87,296 KB
testcase_22 AC 129 ms
85,376 KB
testcase_23 AC 128 ms
85,504 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 164 ms
91,520 KB
testcase_31 WA -
testcase_32 AC 161 ms
91,392 KB
testcase_33 AC 163 ms
91,520 KB
testcase_34 AC 125 ms
85,632 KB
testcase_35 AC 124 ms
85,376 KB
testcase_36 AC 126 ms
85,504 KB
testcase_37 AC 128 ms
85,504 KB
testcase_38 AC 128 ms
84,736 KB
testcase_39 AC 144 ms
84,608 KB
testcase_40 AC 160 ms
91,520 KB
testcase_41 AC 158 ms
91,668 KB
testcase_42 AC 162 ms
91,648 KB
testcase_43 AC 165 ms
92,032 KB
testcase_44 AC 167 ms
91,264 KB
testcase_45 AC 163 ms
91,392 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

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]
        x = min(len(S), len(T)-1)
        
        if x>0:
            L.append((S.count(T), S[:x], S[-x:]))
        else:
            L.append((S.count(T), '', ''))
    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
        L.append((c, L[i][1], L[j][2]))

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