#include #include #include using namespace std; using ll=long long; #define rep(i,n) for(int i=0;i=0;i--) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} const ll MOD=998244353; template struct FenwickTree{ int n; vector bit; FenwickTree(int N){ bit.resize(N+1); n = N; } T sum(int i){ i++; T s = 0; while (i > 0){ s += bit[i]; s %= MOD; i -= i & -i; } return s; } T sum(int l, int r){ if (l >= r) return 0; return (sum(r-1) - sum(l-1)) % MOD; } void add(int i, T x){ i++; while (i <= n){ bit[i] += x; bit[i] %= MOD; i += i & -i; } } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin>>n; string s; cin>>s; ll ans=0,p=1,q=1; rep(i,n-1)q=2*q%MOD; rep(i,n){ FenwickTreefw(n+2); fw.add(n,1); fw.add(n+1,-1); rrep(j,n){ ll c=fw.sum(0,j+2); fw.add(max(0,j-i+1),c); fw.add(j+1,-c); if(j-i>=0&&s[j-i]=='0'){ fw.add(0,c); fw.add(j-i+1,-c); } } ans+=p*(q-fw.sum(0,1))%MOD; ans%=MOD; p=2*p%MOD; } if(ans<0)ans+=MOD; cout<