結果

問題 No.2943 Sigma String of String Score Problem
ユーザー detteiuudetteiuu
提出日時 2024-10-18 22:20:37
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 408 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 848,192 KB
最終ジャッジ日時 2024-10-18 22:50:16
合計ジャッジ時間 14,388 ms
ジャッジサーバーID
(参考情報)
judge7 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,176 KB
testcase_01 AC 36 ms
52,544 KB
testcase_02 AC 36 ms
52,332 KB
testcase_03 MLE -
testcase_04 AC 120 ms
99,312 KB
testcase_05 MLE -
testcase_06 AC 104 ms
93,160 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 91 ms
90,132 KB
testcase_12 MLE -
testcase_13 AC 173 ms
118,324 KB
testcase_14 AC 143 ms
101,020 KB
testcase_15 AC 212 ms
119,732 KB
testcase_16 AC 150 ms
103,356 KB
testcase_17 AC 79 ms
83,592 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()

MOD = 998244353
dp = [[0]*(len(T)+1) for _ in range(len(S)+1)]
dp[0][0] = 1
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

ans = dp[-1][-1]
for _ in range(len(S)-len(T)):
    ans *= 2
    ans %= MOD

print(ans)
0