結果

問題 No.2943 Sigma String of String Score Problem
ユーザー otoshigootoshigo
提出日時 2024-10-18 22:16:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 3,000 ms
コード長 808 bytes
コンパイル時間 2,664 ms
コンパイル使用メモリ 205,600 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 22:48:55
合計ジャッジ時間 4,773 ms
ジャッジサーバーID
(参考情報)
judge8 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 147 ms
6,820 KB
testcase_04 AC 7 ms
6,820 KB
testcase_05 AC 69 ms
6,816 KB
testcase_06 AC 6 ms
6,820 KB
testcase_07 AC 18 ms
6,820 KB
testcase_08 AC 120 ms
6,820 KB
testcase_09 AC 62 ms
6,820 KB
testcase_10 AC 19 ms
6,820 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 26 ms
6,816 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 11 ms
6,820 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 90 ms
6,820 KB
testcase_19 AC 47 ms
6,824 KB
testcase_20 AC 30 ms
6,820 KB
testcase_21 AC 85 ms
6,816 KB
testcase_22 AC 167 ms
6,820 KB
testcase_23 AC 165 ms
6,816 KB
testcase_24 AC 165 ms
6,816 KB
testcase_25 AC 128 ms
6,816 KB
testcase_26 AC 162 ms
6,816 KB
testcase_27 AC 167 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using ll=long long;
using mint=atcoder::modint998244353;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    string S,T;
    cin>>S>>T;
    int N=S.size(),M=T.size();
    vector<mint>dp(M+1);
    dp[0]=1;
    for(int i=0;i<N;i++){
        vector<mint>nxt=dp;
        for(int j=0;j<M;j++){
            if(T[j]==S[i]){
                nxt[j+1]+=dp[j];
            }
        }
        swap(dp,nxt);
    }
    mint ans=dp[M]*mint(2).pow(N-M);
    cout<<ans.val()<<"\n";
}
0