結果

問題 No.2943 Sigma String of String Score Problem
ユーザー 寝癖寝癖
提出日時 2024-10-18 22:45:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 480 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 848,748 KB
最終ジャッジ日時 2024-10-18 22:54:37
合計ジャッジ時間 14,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,060 KB
testcase_01 AC 34 ms
52,436 KB
testcase_02 AC 35 ms
52,828 KB
testcase_03 MLE -
testcase_04 AC 129 ms
99,160 KB
testcase_05 MLE -
testcase_06 AC 101 ms
93,140 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 88 ms
90,076 KB
testcase_12 MLE -
testcase_13 AC 173 ms
118,188 KB
testcase_14 AC 144 ms
101,168 KB
testcase_15 AC 208 ms
119,960 KB
testcase_16 AC 153 ms
103,272 KB
testcase_17 AC 101 ms
83,588 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S, T = input().split()

# dp[i][j] := Sのi文字目まで見て、Tのj文字目まで一致しているようなものの個数
dp = [[0]*(len(T)+1) for _ in range(len(S)+1)]
dp[0][0] = 1

mod = 998244353
for i in range(len(S)):
    for j in range(len(T)+1):
        dp[i+1][j] += dp[i][j]
        dp[i+1][j] %= mod
        if j < len(T) and S[i] == T[j]:
            dp[i+1][j+1] += dp[i][j]
            dp[i+1][j+1] %= mod

print(dp[len(S)][len(T)] * (1<<len(S)-len(T)) % mod)
0