結果

問題 No.2219 Re:010
ユーザー minimumminimum
提出日時 2023-02-17 21:31:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-07-19 12:34:34
合計ジャッジ時間 3,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 115 ms
111,872 KB
testcase_04 AC 65 ms
68,608 KB
testcase_05 AC 106 ms
103,296 KB
testcase_06 AC 70 ms
73,472 KB
testcase_07 AC 84 ms
87,680 KB
testcase_08 AC 101 ms
105,984 KB
testcase_09 AC 109 ms
107,520 KB
testcase_10 AC 100 ms
100,352 KB
testcase_11 AC 84 ms
89,344 KB
testcase_12 AC 94 ms
94,464 KB
testcase_13 AC 120 ms
117,376 KB
testcase_14 AC 116 ms
116,992 KB
testcase_15 AC 115 ms
116,864 KB
testcase_16 AC 117 ms
116,992 KB
testcase_17 AC 116 ms
117,248 KB
testcase_18 AC 91 ms
105,344 KB
testcase_19 AC 91 ms
105,472 KB
testcase_20 AC 127 ms
116,864 KB
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 41 ms
51,968 KB
testcase_23 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate


MOD = 998244353

S = input()
INV2 = pow(2, MOD - 2, MOD)
a = []
c = 0
for i in range(len(S)):
    if S[i] == '0':
        a.append(1)
    elif S[i] == '?':
        a.append(INV2)
        c += 1
    else:
        a.append(0)

acl = [0]
now = 0
for i in a:
    now += i
    now %= MOD
    acl.append(now)

a.reverse()
acr = [0]
now = 0
for i in a:
    now += i
    now %= MOD
    acr.append(now)
acr.reverse()
a.reverse()

ans = 0
for i in range(len(a)):
    ans += (1 - a[i]) * acl[i] * acr[i + 1]
    ans %= MOD

print((ans * pow(2, c, MOD)) % MOD)
0