結果

問題 No.2040 010-1 Deletion
ユーザー googol_S0googol_S0
提出日時 2022-08-12 22:01:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 3,000 ms
コード長 751 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 148,032 KB
最終ジャッジ日時 2024-09-23 02:31:43
合計ジャッジ時間 8,148 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 39 ms
52,696 KB
testcase_02 AC 38 ms
52,524 KB
testcase_03 AC 52 ms
63,984 KB
testcase_04 AC 37 ms
52,772 KB
testcase_05 AC 38 ms
53,208 KB
testcase_06 AC 38 ms
53,204 KB
testcase_07 AC 38 ms
52,776 KB
testcase_08 AC 38 ms
52,200 KB
testcase_09 AC 38 ms
53,352 KB
testcase_10 AC 38 ms
53,136 KB
testcase_11 AC 285 ms
147,212 KB
testcase_12 AC 299 ms
147,996 KB
testcase_13 AC 277 ms
147,300 KB
testcase_14 AC 270 ms
147,148 KB
testcase_15 AC 274 ms
147,392 KB
testcase_16 AC 287 ms
138,224 KB
testcase_17 AC 175 ms
137,552 KB
testcase_18 AC 322 ms
148,032 KB
testcase_19 AC 92 ms
83,888 KB
testcase_20 AC 90 ms
79,692 KB
testcase_21 AC 168 ms
103,148 KB
testcase_22 AC 171 ms
109,348 KB
testcase_23 AC 266 ms
136,456 KB
testcase_24 AC 273 ms
143,536 KB
testcase_25 AC 242 ms
127,804 KB
testcase_26 AC 224 ms
120,584 KB
testcase_27 AC 256 ms
131,704 KB
testcase_28 AC 231 ms
121,044 KB
testcase_29 AC 237 ms
132,228 KB
testcase_30 AC 176 ms
109,108 KB
testcase_31 AC 280 ms
141,764 KB
testcase_32 AC 267 ms
144,432 KB
testcase_33 AC 255 ms
138,184 KB
testcase_34 AC 287 ms
143,852 KB
testcase_35 AC 292 ms
142,876 KB
testcase_36 AC 261 ms
139,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
mod=998244353

DP0=[[0]*(2*N+3) for i in range(N+1)]
DP1=[[0]*(2*N+3) for i in range(N+1)]
F=1
for i in range(N):
  if S[i]=='1':
    for j in range(-N,N+1):
      DP1[i+1][j]=(DP1[i][j]+DP0[i][j])%mod
  elif S[i]=='0':
    for j in range(-N,N+1):
      DP0[i+1][j-1]=(DP0[i+1][j-1]+DP0[i][j])%mod
      DP0[i+1][j+1]=(DP0[i+1][j+1]+DP1[i][j])%mod
    if F:
      F=0
      DP0[i+1][0]=(DP0[i+1][0]+1)%mod
  else:
    for j in range(-N,N+1):
      DP1[i+1][j]=(DP1[i][j]+DP0[i][j])%mod
    for j in range(-N,N+1):
      DP0[i+1][j-1]=(DP0[i+1][j-1]+DP0[i][j])%mod
      DP0[i+1][j+1]=(DP0[i+1][j+1]+DP1[i][j])%mod
    if F:
      DP0[i+1][0]=(DP0[i+1][0]+1)%mod
for i in range(1,N+1,2):
  F+=(DP0[N][i]+DP1[N][i])
print(F%mod)
0