結果

問題 No.2943 Sigma String of String Score Problem
ユーザー noriaokinoriaoki
提出日時 2024-10-18 23:32:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,020 ms / 3,000 ms
コード長 256 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,312 KB
最終ジャッジ日時 2024-10-18 23:36:01
合計ジャッジ時間 12,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,668 KB
testcase_01 AC 35 ms
52,616 KB
testcase_02 AC 35 ms
53,352 KB
testcase_03 AC 813 ms
75,904 KB
testcase_04 AC 75 ms
75,804 KB
testcase_05 AC 411 ms
76,004 KB
testcase_06 AC 68 ms
75,780 KB
testcase_07 AC 130 ms
75,688 KB
testcase_08 AC 673 ms
75,888 KB
testcase_09 AC 386 ms
75,812 KB
testcase_10 AC 136 ms
76,048 KB
testcase_11 AC 61 ms
75,852 KB
testcase_12 AC 191 ms
75,936 KB
testcase_13 AC 91 ms
76,124 KB
testcase_14 AC 78 ms
75,692 KB
testcase_15 AC 100 ms
75,804 KB
testcase_16 AC 80 ms
75,832 KB
testcase_17 AC 54 ms
75,928 KB
testcase_18 AC 495 ms
75,940 KB
testcase_19 AC 266 ms
75,760 KB
testcase_20 AC 183 ms
75,736 KB
testcase_21 AC 501 ms
75,888 KB
testcase_22 AC 918 ms
76,164 KB
testcase_23 AC 933 ms
75,820 KB
testcase_24 AC 929 ms
76,016 KB
testcase_25 AC 876 ms
76,312 KB
testcase_26 AC 1,020 ms
75,764 KB
testcase_27 AC 933 ms
76,112 KB
testcase_28 AC 36 ms
51,996 KB
testcase_29 AC 36 ms
52,736 KB
testcase_30 AC 34 ms
52,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s, t = input().split()
mod = 998244353
dp = [0]*(len(t) + 1)
dp[0] = 1
for i in range(len(s)):
    for j in range(len(t), 0, -1):
        if s[i] == t[j-1]:
            dp[j] += dp[j-1]
            dp[j] %= mod

print(dp[-1]*pow(2, len(s)-len(t), mod)%mod)
0