結果

問題 No.2943 Sigma String of String Score Problem
ユーザー 寝癖寝癖
提出日時 2024-10-18 22:59:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,240 ms / 3,000 ms
コード長 530 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 79,516 KB
最終ジャッジ日時 2024-10-18 22:59:59
合計ジャッジ時間 19,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,484 KB
testcase_01 AC 35 ms
53,092 KB
testcase_02 AC 35 ms
51,824 KB
testcase_03 AC 1,471 ms
78,560 KB
testcase_04 AC 101 ms
76,164 KB
testcase_05 AC 684 ms
76,864 KB
testcase_06 AC 85 ms
75,924 KB
testcase_07 AC 193 ms
75,928 KB
testcase_08 AC 1,191 ms
77,540 KB
testcase_09 AC 651 ms
77,236 KB
testcase_10 AC 240 ms
76,224 KB
testcase_11 AC 73 ms
76,148 KB
testcase_12 AC 316 ms
75,924 KB
testcase_13 AC 136 ms
76,092 KB
testcase_14 AC 118 ms
75,884 KB
testcase_15 AC 167 ms
76,404 KB
testcase_16 AC 121 ms
76,132 KB
testcase_17 AC 66 ms
75,792 KB
testcase_18 AC 836 ms
77,544 KB
testcase_19 AC 429 ms
76,236 KB
testcase_20 AC 281 ms
75,852 KB
testcase_21 AC 843 ms
77,040 KB
testcase_22 AC 1,577 ms
79,072 KB
testcase_23 AC 1,591 ms
79,516 KB
testcase_24 AC 1,585 ms
79,220 KB
testcase_25 AC 1,937 ms
79,080 KB
testcase_26 AC 2,240 ms
79,040 KB
testcase_27 AC 1,561 ms
79,160 KB
testcase_28 AC 33 ms
53,152 KB
testcase_29 AC 33 ms
52,940 KB
testcase_30 AC 32 ms
52,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S, T = input().split()

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

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

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