結果

問題 No.2219 Re:010
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-17 22:20:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 124,780 KB
最終ジャッジ日時 2024-07-19 13:30:11
合計ジャッジ時間 5,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,968 KB
testcase_01 AC 37 ms
53,960 KB
testcase_02 AC 36 ms
52,432 KB
testcase_03 AC 284 ms
118,356 KB
testcase_04 AC 85 ms
81,160 KB
testcase_05 AC 232 ms
104,136 KB
testcase_06 AC 102 ms
84,264 KB
testcase_07 AC 171 ms
95,900 KB
testcase_08 AC 284 ms
113,736 KB
testcase_09 AC 275 ms
112,624 KB
testcase_10 AC 217 ms
104,152 KB
testcase_11 AC 212 ms
101,088 KB
testcase_12 AC 192 ms
101,372 KB
testcase_13 AC 331 ms
122,720 KB
testcase_14 AC 330 ms
122,316 KB
testcase_15 AC 330 ms
124,224 KB
testcase_16 AC 332 ms
124,496 KB
testcase_17 AC 337 ms
124,780 KB
testcase_18 AC 104 ms
110,128 KB
testcase_19 AC 108 ms
110,448 KB
testcase_20 AC 406 ms
110,500 KB
testcase_21 AC 33 ms
52,548 KB
testcase_22 AC 34 ms
52,072 KB
testcase_23 AC 34 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
mod = 998244353

L = [[0,0]]
for s in S:
    l = L[-1][:]
    if s == "0":
        l[0] += 1
    elif s == "?":
        l[1] += 1
    L.append(l)

R = [[0,0]]
for s in S[::-1]:
    l = R[-1][:]
    if s == "0":
        l[0] += 1
    elif s == "?":
        l[1] += 1
    R.append(l)

R = R[::-1]
ans = 0
for i,s in enumerate(S):
    if s == "0":
        continue
    l0,l1 = L[i]
    r0,r1 = R[i+1]
    # print(i,s,l1,l1,r0,r1)
    ans += l0*r0%mod*pow(2,l1+r1,mod)
    ans %= mod
    if r1:
        ans += l0*r1%mod*pow(2,l1+r1-1,mod)
        ans %= mod
    if l1:
        ans += r0*l1%mod*pow(2,l1+r1-1,mod)
        ans %= mod
    
    if r1*l1:
        ans += r1*l1%mod*pow(2,l1+r1-2,mod)
        ans %= mod

print(ans)
0