#include using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair P; #define fi first #define se second #define repl(i,a,b) for(ll i=(ll)(a);i<(ll)(b);i++) #define rep(i,n) repl(i,0,n) #define all(x) (x).begin(),(x).end() #define dbg(x) cout<<#x"="<y?x:y) #define mmin(x,y) (x0){ if(n&1)res=res*x%mod; x=x*x%mod; n>>=1; } return res; } int main(){ cin.tie(0); ios::sync_with_stdio(false); ll N; cin>>N; vector A(N); rep(i,N)cin>>A[i]; ll res=0,p=1; rep(i,N){ (p*=A[i])%=mod; (res+=p*mod_pow(3,N-2-i)*(i!=N-1?2:1)%mod)%=mod; } cout<