結果

問題 No.2943 Sigma String of String Score Problem
ユーザー tassei903tassei903
提出日時 2024-10-18 22:04:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,854 ms / 3,000 ms
コード長 715 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 79,072 KB
最終ジャッジ日時 2024-10-18 22:45:38
合計ジャッジ時間 18,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
52,656 KB
testcase_01 AC 58 ms
53,852 KB
testcase_02 AC 64 ms
52,776 KB
testcase_03 AC 1,292 ms
78,148 KB
testcase_04 AC 111 ms
75,760 KB
testcase_05 AC 625 ms
76,468 KB
testcase_06 AC 92 ms
75,900 KB
testcase_07 AC 199 ms
76,264 KB
testcase_08 AC 1,158 ms
77,232 KB
testcase_09 AC 647 ms
76,664 KB
testcase_10 AC 257 ms
76,236 KB
testcase_11 AC 87 ms
75,968 KB
testcase_12 AC 279 ms
75,844 KB
testcase_13 AC 134 ms
76,276 KB
testcase_14 AC 110 ms
75,708 KB
testcase_15 AC 149 ms
76,080 KB
testcase_16 AC 127 ms
75,968 KB
testcase_17 AC 76 ms
75,896 KB
testcase_18 AC 767 ms
76,852 KB
testcase_19 AC 407 ms
76,100 KB
testcase_20 AC 313 ms
76,120 KB
testcase_21 AC 758 ms
76,816 KB
testcase_22 AC 1,576 ms
79,072 KB
testcase_23 AC 1,500 ms
78,532 KB
testcase_24 AC 1,426 ms
78,924 KB
testcase_25 AC 1,854 ms
78,712 KB
testcase_26 AC 1,634 ms
78,532 KB
testcase_27 AC 1,490 ms
78,808 KB
testcase_28 AC 43 ms
52,992 KB
testcase_29 AC 47 ms
53,144 KB
testcase_30 AC 49 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

mod = 998244353
s, t = input().split()

n, m = len(s), len(t)
dp = [0] * (m + 1)
dp[0] = 1

for i in range(n):
    ndp = [0] * (m + 1)
    for j in range(m + 1):
        if j < m and s[i] == t[j]:
            ndp[j + 1] += dp[j]
            ndp[j + 1] %= mod
        ndp[j] += dp[j]
        ndp[j] %= mod

    dp = ndp

print(dp[-1] * pow(2, n - m , mod) % mod)
0