結果

問題 No.2943 Sigma String of String Score Problem
ユーザー keisuke6keisuke6
提出日時 2024-10-18 21:40:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 3,000 ms
コード長 408 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 204,108 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-18 22:33:26
合計ジャッジ時間 5,022 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 141 ms
6,820 KB
testcase_04 AC 7 ms
6,820 KB
testcase_05 AC 65 ms
6,820 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 17 ms
6,816 KB
testcase_08 AC 117 ms
6,820 KB
testcase_09 AC 60 ms
6,820 KB
testcase_10 AC 18 ms
6,816 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 23 ms
6,816 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 8 ms
6,816 KB
testcase_15 AC 13 ms
6,816 KB
testcase_16 AC 8 ms
6,820 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 81 ms
6,820 KB
testcase_19 AC 42 ms
6,820 KB
testcase_20 AC 27 ms
6,816 KB
testcase_21 AC 80 ms
6,820 KB
testcase_22 AC 157 ms
6,816 KB
testcase_23 AC 161 ms
6,816 KB
testcase_24 AC 159 ms
6,816 KB
testcase_25 AC 122 ms
6,820 KB
testcase_26 AC 194 ms
6,816 KB
testcase_27 AC 160 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    string S,T;
    cin>>S>>T;
    int N = S.size();
    int M = T.size();
    int mod = 998244353;
    vector<int> dp(M+1);
    dp[0] = 1;
    for(int i=0;i<N;i++)for(int j=M-1;j>=0;j--)if(S[i] == T[j]) dp[j+1] = (dp[j+1]+dp[j])%mod;
    int ans = dp[M];
    for(int i=0;i<N-M;i++) ans = (ans*2)%mod;
    cout<<ans<<endl;
}
0