#include #include using namespace std; using namespace atcoder; using ll = long long; using ull = unsigned long long; template bool chmax(T &a, const T &b) {if (a < b) {a = b; return 1;} return 0;} template bool chmin(T &a, const T &b) {if (b < a) {a = b; return 1;} return 0;} const int INF = INT_MAX / 2; const ll LINF = 1LL << 60; const vector dx = {-1, 0, 1, 0}, dy = {0, 1, 0, -1}; using mint = modint998244353; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; string s; cin >> s; bool ok = false; for (int i = 0; i < n; i++) { if (s[i] == '1') { ok = true; } } if (!ok) { cout << 0 << '\n'; return 0; } int r = 0; mint ans = 1; for (int l = 0; l < n;) { if (s[l] == '0') { l++; r++; } else { if (r < n - 1 && s[l] == '1' && s[r + 1] == '1') { ans *= 2; l++; r++; continue; } r++; while (r < n && s[r] == '0') { r++; } if (r == n) { break; } else { ans *= (r - l + 1); l = r; } } } cout << ans.val() << '\n'; return 0; }