結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 43 ms
5,248 KB
testcase_04 AC 7 ms
5,248 KB
testcase_05 AC 33 ms
5,248 KB
testcase_06 AC 10 ms
5,248 KB
testcase_07 AC 20 ms
5,248 KB
testcase_08 AC 40 ms
5,248 KB
testcase_09 AC 38 ms
5,248 KB
testcase_10 AC 29 ms
5,248 KB
testcase_11 AC 24 ms
5,248 KB
testcase_12 AC 25 ms
5,248 KB
testcase_13 AC 49 ms
5,248 KB
testcase_14 AC 49 ms
5,248 KB
testcase_15 AC 49 ms
5,248 KB
testcase_16 AC 49 ms
5,248 KB
testcase_17 AC 50 ms
5,248 KB
testcase_18 AC 7 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 80 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 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