結果

問題 No.2172 SEARCH in the Text Editor
ユーザー roarisroaris
提出日時 2022-12-24 13:48:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,107 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 95,620 KB
最終ジャッジ日時 2024-11-18 07:17:36
合計ジャッジ時間 7,098 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,220 KB
testcase_01 AC 30 ms
53,160 KB
testcase_02 AC 31 ms
52,500 KB
testcase_03 WA -
testcase_04 AC 109 ms
84,992 KB
testcase_05 WA -
testcase_06 AC 73 ms
80,776 KB
testcase_07 AC 90 ms
83,284 KB
testcase_08 WA -
testcase_09 AC 114 ms
87,752 KB
testcase_10 AC 110 ms
87,256 KB
testcase_11 AC 78 ms
80,512 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 127 ms
91,960 KB
testcase_15 AC 94 ms
82,916 KB
testcase_16 AC 83 ms
82,856 KB
testcase_17 WA -
testcase_18 AC 128 ms
90,532 KB
testcase_19 AC 129 ms
90,944 KB
testcase_20 AC 96 ms
82,232 KB
testcase_21 AC 112 ms
89,440 KB
testcase_22 AC 88 ms
85,708 KB
testcase_23 AC 89 ms
85,516 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 142 ms
95,112 KB
testcase_30 AC 131 ms
94,056 KB
testcase_31 AC 133 ms
94,512 KB
testcase_32 AC 107 ms
91,604 KB
testcase_33 AC 104 ms
91,424 KB
testcase_34 AC 87 ms
85,612 KB
testcase_35 AC 90 ms
85,724 KB
testcase_36 AC 90 ms
85,880 KB
testcase_37 AC 88 ms
85,668 KB
testcase_38 AC 91 ms
85,360 KB
testcase_39 AC 103 ms
84,976 KB
testcase_40 AC 142 ms
95,380 KB
testcase_41 AC 140 ms
95,568 KB
testcase_42 AC 129 ms
94,476 KB
testcase_43 AC 133 ms
94,840 KB
testcase_44 AC 104 ms
91,700 KB
testcase_45 AC 106 ms
91,588 KB
testcase_46 AC 99 ms
84,888 KB
testcase_47 AC 91 ms
83,376 KB
testcase_48 AC 94 ms
84,012 KB
testcase_49 AC 115 ms
88,556 KB
testcase_50 AC 113 ms
87,580 KB
testcase_51 AC 89 ms
83,096 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