結果

問題 No.2943 Sigma String of String Score Problem
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-10-18 22:18:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 680 bytes
コンパイル時間 5,269 ms
コンパイル使用メモリ 312,668 KB
実行使用メモリ 398,040 KB
最終ジャッジ日時 2024-10-18 22:49:44
合計ジャッジ時間 12,502 ms
ジャッジサーバーID
(参考情報)
judge7 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 MLE -
testcase_04 AC 18 ms
15,104 KB
testcase_05 MLE -
testcase_06 AC 14 ms
11,904 KB
testcase_07 AC 59 ms
41,344 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 59 ms
43,648 KB
testcase_11 AC 13 ms
10,368 KB
testcase_12 AC 91 ms
70,912 KB
testcase_13 AC 30 ms
24,320 KB
testcase_14 AC 22 ms
16,000 KB
testcase_15 AC 37 ms
25,088 KB
testcase_16 AC 24 ms
16,896 KB
testcase_17 AC 8 ms
7,040 KB
testcase_18 MLE -
testcase_19 AC 148 ms
103,808 KB
testcase_20 AC 89 ms
64,000 KB
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

using mint = modint998244353;

int main() {
    string s, t;
    cin >> s >> t;
    int n = s.size(), m = t.size();
    vector<vector<mint>> dp(n + 1, vector<mint>(m + 1));
    dp[0][0] = 1;
    rep(i, 0, n) {
        rep(j, 0, m) {
            if (s[i] == t[j])
                dp[i + 1][j + 1] += dp[i][j];
        }
        rep(j, 0, m + 1) { dp[i + 1][j] += dp[i][j]; }
    }
    mint cnt = dp[n][m];
    int delta = n - m;
    mint ans = cnt * mint(2).pow(delta);
    cout << ans.val() << endl;
}
0