結果

問題 No.2219 Re:010
ユーザー timitimi
提出日時 2023-02-17 22:20:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 650 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 117,428 KB
最終ジャッジ日時 2024-07-19 13:29:00
合計ジャッジ時間 6,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 396 ms
103,680 KB
testcase_04 AC 95 ms
77,636 KB
testcase_05 AC 322 ms
103,352 KB
testcase_06 AC 122 ms
80,384 KB
testcase_07 AC 216 ms
89,600 KB
testcase_08 AC 372 ms
107,508 KB
testcase_09 AC 367 ms
107,380 KB
testcase_10 AC 288 ms
99,840 KB
testcase_11 AC 255 ms
94,336 KB
testcase_12 AC 249 ms
94,664 KB
testcase_13 AC 458 ms
104,064 KB
testcase_14 AC 462 ms
103,688 KB
testcase_15 AC 458 ms
107,392 KB
testcase_16 AC 449 ms
103,568 KB
testcase_17 AC 451 ms
103,936 KB
testcase_18 AC 84 ms
105,088 KB
testcase_19 AC 79 ms
106,240 KB
testcase_20 AC 650 ms
117,428 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 34 ms
52,352 KB
testcase_23 AC 32 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
A,B,C=[0],[0],[0]
for s in S:
  if s=='0':
    A.append(A[-1]+1)
    B.append(B[-1])
    C.append(C[-1])
  elif s=='1':
    A.append(A[-1])
    B.append(B[-1]+1)
    C.append(C[-1])
  else:
    A.append(A[-1])
    B.append(B[-1])
    C.append(C[-1]+1)
ans=0
hh=C[-1]
mod=998244353
for i in range(len(S)):
  hl,hr=C[i],C[-1]-C[i+1]
  zl,zr=A[i],A[-1]-A[i+1]
  a,b,c,d=0,0,0,0
  if S[i]=='0':
    continue
  if S[i]=='?':
    a=zl*zr*pow(2,hh-1,mod)
  else:
    a=zl*zr*pow(2,hh,mod)
  if hl>0:
    b=hl*pow(2,hl-1,mod)*zr*pow(2,hr,mod)
  if hr>0:
    c=zl*pow(2,hl,mod)*hr*pow(2,hr-1,mod)
  if hl>0 and hr>0:
    d=hl*pow(2,hl-1,mod)*hr*pow(2,hr-1,mod)
  ans+=a+b+c+d 
  ans%=mod
print(ans)
0