結果

問題 No.2219 Re:010
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-04-22 07:32:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,421 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 108,312 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 14:01:34
合計ジャッジ時間 2,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 40 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 32 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 37 ms
5,376 KB
testcase_09 AC 36 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 47 ms
5,376 KB
testcase_14 AC 48 ms
5,376 KB
testcase_15 AC 48 ms
5,376 KB
testcase_16 AC 47 ms
5,376 KB
testcase_17 AC 48 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 7 ms
5,376 KB
testcase_20 AC 76 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

const ll modc = 998244353;

long long mod_exp(long long b, long long e, long long m){
    if (e < 0) return 0;
    if (e > 0 && b == 0) return 0;
    long long ans = 1;
    b %= m;

    while (e > 0){
        if ((e & 1LL)) ans = (ans * b) % m;
        e = e >> 1LL;
        b = (b*b) % m;
    }

    return ans;
}

ll f(ll x, ll y, ll z, ll w){
    ll res;
    res = (x * mod_exp(2, z, modc) % modc + (z * mod_exp(2, z-1, modc)) % modc) % modc;
    res *= (y * mod_exp(2, w, modc) % modc + (w * mod_exp(2, w-1, modc)) % modc) % modc;
    res %= modc;
    return res;
}

int main(){

    ll ans = 0, N, r0=0, l0=0, rq=0, lq=0;
    string S;
    cin >> S;
    N = S.size();
    for (int i=0; i<N; i++){
        if (S[i] == '?') rq++;
        else if (S[i] == '0') r0++;
    }

    for (int i=0; i<N; i++){
        if (S[i] == '0'){
            l0++;
            r0--;
        }
        if (S[i] == '1'){
            ans += f(l0, r0, lq, rq);
            ans %= modc;
        }
        if (S[i] == '?'){
            rq--;
            ans += f(l0, r0, lq, rq);
            ans %= modc;
            lq++;
        }
    }

    cout << ans << endl;

    return 0;
}
0