結果

問題 No.2943 Sigma String of String Score Problem
ユーザー 👑 NachiaNachia
提出日時 2024-10-18 22:08:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 3,000 ms
コード長 881 bytes
コンパイル時間 1,001 ms
コンパイル使用メモリ 79,980 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 22:46:30
合計ジャッジ時間 3,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge8
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 111 ms
6,820 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 51 ms
6,820 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 13 ms
6,820 KB
testcase_08 AC 88 ms
6,820 KB
testcase_09 AC 47 ms
6,824 KB
testcase_10 AC 13 ms
6,820 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 15 ms
6,816 KB
testcase_13 AC 7 ms
6,824 KB
testcase_14 AC 5 ms
6,816 KB
testcase_15 AC 7 ms
6,820 KB
testcase_16 AC 5 ms
6,820 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 62 ms
6,820 KB
testcase_19 AC 33 ms
6,820 KB
testcase_20 AC 20 ms
6,816 KB
testcase_21 AC 64 ms
6,820 KB
testcase_22 AC 123 ms
6,820 KB
testcase_23 AC 132 ms
6,816 KB
testcase_24 AC 123 ms
6,820 KB
testcase_25 AC 79 ms
6,816 KB
testcase_26 AC 89 ms
6,824 KB
testcase_27 AC 123 ms
6,824 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;
using namespace std;

void testcase(){
    string S, T; cin >> S >> T;
    i64 n = T.size();
    vector<Modint> cnt(n+1);
    cnt[0] = 1;
    for(char c : S){
        for(i64 x=n-1; x>=0; x--) if(c == T[x]){
            cnt[x+1] += cnt[x];
        }
    }
    Modint ans = cnt.back() * Modint(2).pow(S.size() - T.size());
    cout << ans.val() << '\n';
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    testcase();
    return 0;
}
0