#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; const int MOD=998244353; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; vector A(n); rep(i,n) cin>>A[i]; stack> st; rep(i,n){ while(st.size() && st.top().first>A[i]){ st.pop(); } st.push({A[i],i}); } vector B; while(st.size()){ auto p=st.top(); st.pop(); B.push_back(p.second); } int b=B.size(); ll ans=1; rep(i,b-1) ans=ans*(B[i]-B[i+1]+1)%MOD; cout<