結果

問題 No.2219 Re:010
ユーザー behoma8behoma8
提出日時 2023-03-07 17:31:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 458 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,208 KB
最終ジャッジ日時 2024-09-18 02:11:52
合計ジャッジ時間 25,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,568 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,791 ms
11,136 KB
testcase_04 AC 74 ms
10,624 KB
testcase_05 AC 1,142 ms
10,880 KB
testcase_06 AC 134 ms
10,624 KB
testcase_07 AC 471 ms
10,752 KB
testcase_08 AC 1,577 ms
10,880 KB
testcase_09 AC 1,463 ms
11,008 KB
testcase_10 AC 897 ms
10,752 KB
testcase_11 AC 647 ms
10,752 KB
testcase_12 AC 677 ms
10,880 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 150 ms
11,008 KB
testcase_19 AC 145 ms
11,008 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
MOD = 998244353
p = 1
N = len(S)
d0, d1, d2 = 0, 0, 0
e0, e1, e2 = 0, 0, 0
for i in range(N):
    if S[i] == '0':
        e0 = ( d0 + p ) % MOD
        e1 = d1
        e2 = ( d2 + d1 ) % MOD
    elif S[i] == '1':
        e0 = d0
        e1 = ( d1 + d0 ) % MOD
        e2 = d2
    else:
        e0 = ( 2 * d0 + p ) % MOD
        e1 = ( 2 * d1 + d0 ) % MOD
        e2 = ( 2 * d2 + d1 ) % MOD
        p *= 2
    d0, d1, d2 = e0, e1, e2

print( d2 )
0