結果

問題 No.2943 Sigma String of String Score Problem
ユーザー FplusFplusFFplusFplusF
提出日時 2024-10-18 23:24:39
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,054 bytes
コンパイル時間 3,043 ms
コンパイル使用メモリ 251,704 KB
実行使用メモリ 397,952 KB
最終ジャッジ日時 2024-10-18 23:24:55
合計ジャッジ時間 10,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 MLE -
testcase_04 AC 19 ms
14,720 KB
testcase_05 MLE -
testcase_06 AC 15 ms
11,520 KB
testcase_07 AC 60 ms
41,344 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 64 ms
43,648 KB
testcase_11 AC 12 ms
10,112 KB
testcase_12 AC 97 ms
70,784 KB
testcase_13 AC 33 ms
24,192 KB
testcase_14 AC 21 ms
15,872 KB
testcase_15 AC 38 ms
24,960 KB
testcase_16 AC 25 ms
16,768 KB
testcase_17 AC 8 ms
7,040 KB
testcase_18 MLE -
testcase_19 AC 151 ms
103,808 KB
testcase_20 AC 94 ms
63,744 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,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
constexpr ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
#include <atcoder/modint>
using mint=atcoder::modint998244353;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    string s,t;
    cin >> s >> t;
    ll n=len(s),m=len(t);
    vector<vector<mint>> dp(n+1,vector<mint>(m+1,0));
    dp[0][0]=1;
    rep(i,n){
        rep(j,m+1){
            dp[i+1][j]+=dp[i][j];
            if(j<m&&t[j]==s[i]) dp[i+1][j+1]+=dp[i][j];
        }
    }
    cout << (dp[n][m]*mint(2).pow(n-m)).val() << '\n';
}
0