結果

問題 No.2219 Re:010
ユーザー hourenhouren
提出日時 2023-02-17 21:57:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 1,557 ms
コンパイル使用メモリ 169,788 KB
実行使用メモリ 17,420 KB
最終ジャッジ日時 2023-09-26 19:14:30
合計ジャッジ時間 3,010 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 21 ms
15,276 KB
testcase_04 AC 4 ms
4,616 KB
testcase_05 AC 19 ms
12,540 KB
testcase_06 AC 6 ms
5,608 KB
testcase_07 AC 11 ms
8,828 KB
testcase_08 AC 21 ms
14,380 KB
testcase_09 AC 19 ms
14,080 KB
testcase_10 AC 17 ms
11,408 KB
testcase_11 AC 14 ms
10,100 KB
testcase_12 AC 14 ms
10,204 KB
testcase_13 AC 25 ms
17,416 KB
testcase_14 AC 25 ms
17,240 KB
testcase_15 AC 25 ms
17,280 KB
testcase_16 AC 25 ms
17,420 KB
testcase_17 AC 25 ms
17,284 KB
testcase_18 AC 24 ms
17,392 KB
testcase_19 AC 23 ms
17,396 KB
testcase_20 AC 24 ms
17,276 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    string s;
    cin >> s;
    int n = s.size();
    vector<vector<ll>> dp(n+1,vector<ll>(4,0));
    dp[0][0] = 1;
    rep(i,n){
        if(s[i]!='1'){
            rep(j,4) dp[i+1][j] += dp[i][j];
            dp[i+1][1] += dp[i][0];
            dp[i+1][3] += dp[i][2];
        }
        if(s[i]!='0'){
            rep(j,4) dp[i+1][j] += dp[i][j];
            dp[i+1][2] += dp[i][1];
        }
        rep(j,4){
            dp[i+1][j] %= MOD;
        }
    }
    cout << dp[n][3] << '\n';
    return 0;
}
0