結果

問題 No.2943 Sigma String of String Score Problem
ユーザー detteiuudetteiuu
提出日時 2024-10-18 22:57:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,150 ms / 3,000 ms
コード長 393 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 82,388 KB
最終ジャッジ日時 2024-10-18 22:57:58
合計ジャッジ時間 17,819 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,824 KB
testcase_01 AC 37 ms
52,816 KB
testcase_02 AC 36 ms
52,464 KB
testcase_03 AC 1,210 ms
78,592 KB
testcase_04 AC 92 ms
75,948 KB
testcase_05 AC 589 ms
77,000 KB
testcase_06 AC 84 ms
75,992 KB
testcase_07 AC 184 ms
75,840 KB
testcase_08 AC 1,005 ms
77,888 KB
testcase_09 AC 554 ms
77,292 KB
testcase_10 AC 261 ms
75,992 KB
testcase_11 AC 77 ms
76,104 KB
testcase_12 AC 295 ms
76,452 KB
testcase_13 AC 121 ms
76,148 KB
testcase_14 AC 102 ms
76,064 KB
testcase_15 AC 133 ms
75,996 KB
testcase_16 AC 103 ms
75,976 KB
testcase_17 AC 73 ms
75,848 KB
testcase_18 AC 688 ms
77,376 KB
testcase_19 AC 378 ms
76,700 KB
testcase_20 AC 253 ms
76,092 KB
testcase_21 AC 719 ms
77,616 KB
testcase_22 AC 1,365 ms
79,576 KB
testcase_23 AC 1,343 ms
79,384 KB
testcase_24 AC 1,376 ms
79,084 KB
testcase_25 AC 2,150 ms
79,244 KB
testcase_26 AC 1,617 ms
82,388 KB
testcase_27 AC 1,406 ms
79,256 KB
testcase_28 AC 36 ms
53,072 KB
testcase_29 AC 37 ms
52,332 KB
testcase_30 AC 37 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S, T = input().split()

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

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

print(ans)
0