結果

問題 No.2172 SEARCH in the Text Editor
ユーザー roarisroaris
提出日時 2022-12-24 13:34:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 91,864 KB
最終ジャッジ日時 2024-11-18 07:17:27
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,388 KB
testcase_01 AC 30 ms
53,240 KB
testcase_02 AC 30 ms
52,312 KB
testcase_03 WA -
testcase_04 AC 114 ms
84,372 KB
testcase_05 WA -
testcase_06 AC 73 ms
81,844 KB
testcase_07 AC 71 ms
81,264 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 67 ms
81,212 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 76 ms
82,164 KB
testcase_17 WA -
testcase_18 AC 100 ms
90,316 KB
testcase_19 AC 93 ms
87,484 KB
testcase_20 AC 73 ms
81,460 KB
testcase_21 AC 91 ms
87,476 KB
testcase_22 AC 86 ms
85,636 KB
testcase_23 AC 86 ms
85,692 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 108 ms
91,228 KB
testcase_31 WA -
testcase_32 AC 105 ms
91,164 KB
testcase_33 AC 105 ms
91,160 KB
testcase_34 AC 86 ms
85,320 KB
testcase_35 AC 84 ms
85,372 KB
testcase_36 AC 86 ms
85,336 KB
testcase_37 AC 83 ms
85,492 KB
testcase_38 AC 88 ms
84,476 KB
testcase_39 AC 99 ms
84,204 KB
testcase_40 AC 107 ms
91,864 KB
testcase_41 AC 108 ms
91,312 KB
testcase_42 AC 106 ms
91,536 KB
testcase_43 AC 107 ms
91,680 KB
testcase_44 AC 105 ms
91,388 KB
testcase_45 AC 104 ms
91,224 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