#include using namespace std; using ll=long long; constexpr int MOD=998244353; void ch(ll &a,ll b){ a=(a+b)%MOD; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; vector A(N,0ll); for(ll &i:A)cin>>i; vector pow2(N+3,499122177ll); for(int i=1;i