結果

問題 No.2219 Re:010
ユーザー nika tamlianinika tamliani
提出日時 2023-02-17 22:08:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,053 bytes
コンパイル時間 4,518 ms
コンパイル使用メモリ 202,244 KB
実行使用メモリ 6,584 KB
最終ジャッジ日時 2023-09-26 19:24:25
合計ジャッジ時間 3,376 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 4 ms
6,580 KB
testcase_19 AC 4 ms
6,584 KB
testcase_20 WA -
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MOD = 998244353;

int main() {
    ios::sync_with_stdio(0); cin.tie(0);
    string s; cin >> s; 
    int n = (int)s.size(); s = "#" + s;
    vector<array<int, 4>> dp(n + 1);
    dp[0][0] = 1;
    for (int i = 1; i <= n; ++i) {
        if (s[i] == '0') {
            dp[i][0] = dp[i - 1][0];
            dp[i][1] = (dp[i - 1][1] + dp[i - 1][0]) % MOD;
            dp[i][2] = dp[i - 1][2];
            dp[i][3] = (dp[i - 1][3] + dp[i - 1][2]) % MOD;
        } else if (s[i] == '1') {
            dp[i][0] = dp[i - 1][0];
            dp[i][1] = dp[i - 1][1];
            dp[i][2] = (dp[i - 1][2] + dp[i - 1][1]) % MOD;
            dp[i][3] = dp[i - 1][3];
        } else {
            dp[i][0] = dp[i - 1][0] * 2LL % MOD;
            dp[i][1] = (dp[i - 1][1] + dp[i - 1][1] + dp[i - 1][0]) % MOD;
            dp[i][2] = (dp[i - 1][2] + dp[i - 1][2] + dp[i - 1][1]) % MOD;
            dp[i][3] = (dp[i - 1][3] + dp[i - 1][3] + dp[i - 1][2]) % MOD;
        }
    }
    
    cout << dp[n][3] << endl;
}
0