結果

問題 No.2219 Re:010
ユーザー googol_S0googol_S0
提出日時 2023-02-17 21:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 94,936 KB
最終ジャッジ日時 2024-07-19 12:29:38
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 107 ms
94,336 KB
testcase_04 AC 56 ms
67,712 KB
testcase_05 AC 101 ms
90,748 KB
testcase_06 AC 58 ms
69,888 KB
testcase_07 AC 79 ms
84,864 KB
testcase_08 AC 101 ms
93,824 KB
testcase_09 AC 103 ms
93,672 KB
testcase_10 AC 91 ms
88,960 KB
testcase_11 AC 84 ms
86,784 KB
testcase_12 AC 85 ms
87,168 KB
testcase_13 AC 107 ms
94,936 KB
testcase_14 AC 113 ms
94,848 KB
testcase_15 AC 107 ms
94,584 KB
testcase_16 AC 107 ms
94,848 KB
testcase_17 AC 106 ms
94,720 KB
testcase_18 AC 95 ms
94,592 KB
testcase_19 AC 93 ms
94,720 KB
testcase_20 AC 98 ms
94,464 KB
testcase_21 AC 36 ms
51,840 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
mod=998244353
N=len(S)
DP=[[0,0,0,0] for i in range(N+1)]
DP[0][0]=1
for i in range(N):
  v=1
  if S[i]=='?':
    v=2
  for j in range(4):
    DP[i+1][j]=DP[i][j]*v%mod
  if S[i]=='0' or S[i]=='?':
    DP[i+1][1]=(DP[i+1][1]+DP[i][0])%mod
    DP[i+1][3]=(DP[i+1][3]+DP[i][2])%mod
  if S[i]=='1' or S[i]=='?':
    DP[i+1][2]=(DP[i+1][2]+DP[i][1])%mod
print(DP[N][3])
0