結果

問題 No.2219 Re:010
ユーザー ああいいああいい
提出日時 2023-02-19 11:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-20 13:04:59
合計ジャッジ時間 4,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 238 ms
76,032 KB
testcase_04 AC 76 ms
68,352 KB
testcase_05 AC 194 ms
75,776 KB
testcase_06 AC 93 ms
71,808 KB
testcase_07 AC 140 ms
75,648 KB
testcase_08 AC 216 ms
76,032 KB
testcase_09 AC 211 ms
75,520 KB
testcase_10 AC 175 ms
75,648 KB
testcase_11 AC 157 ms
75,392 KB
testcase_12 AC 157 ms
75,648 KB
testcase_13 AC 261 ms
76,160 KB
testcase_14 AC 257 ms
76,288 KB
testcase_15 AC 258 ms
76,032 KB
testcase_16 AC 256 ms
76,160 KB
testcase_17 AC 256 ms
76,160 KB
testcase_18 AC 45 ms
58,752 KB
testcase_19 AC 116 ms
75,904 KB
testcase_20 AC 368 ms
75,776 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 AC 36 ms
51,584 KB
testcase_23 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

zero = 0
h = 0
for s in S:
    if s == "0":
        zero += 1
    elif s == "?":
        h += 1
P = 998244353
hz = 0
hh = 0
ans = 0
for s in S:
    if s == "1":
        t1 = hz * pow(2,hh,P) % P + hh * pow(2,hh - 1,P)
        t2 = zero * pow(2,h,P) % P + h * pow(2,h - 1,P)
        ans += t1 * t2 % P
        ans %= P
    elif s == "?":
        h -= 1
        t1 = hz * pow(2,hh,P) % P+ hh * pow(2,hh - 1,P)
        t2 = zero * pow(2,h,P) % P + h * pow(2,h - 1,P)
        ans += t1 * t2 % P
        ans %= P
        hh += 1
    else:
        zero -= 1
        hz += 1
    #print(ans)
print(ans)
0