#include using namespace std; using fint64 = int_fast64_t; template struct ModInt { fint64 x; ModInt():x(0){} ModInt(fint64 x): x(x>=0?x%MOD:(MOD-(-x)%MOD)%MOD) {} // 負号 ModInt operator -() const{ return ModInt(-x); } // 加算 ModInt &operator +=(const ModInt &rhs){ x+=rhs.x; if(x>=MOD) x-=MOD; return (*this); } ModInt operator +(const ModInt &rhs) const{ return ModInt(*this)+=rhs; } // 減算 ModInt &operator -=(const ModInt &rhs){ x+=MOD-rhs.x; if(x>=MOD) x-=MOD; return (*this); } ModInt operator -(const ModInt &rhs) const{ return ModInt(*this)-=rhs; } // 乗算 ModInt &operator *=(const ModInt &rhs){ x*=rhs.x; if(x>=MOD) x%=MOD; return (*this); } ModInt operator *(const ModInt &rhs) const{ return ModInt(*this)*=rhs; } // 除算 ModInt &operator /=(const ModInt &rhs){ (*this)*=rhs.inverse(); return (*this); } ModInt operator /(const ModInt &rhs) const{ return ModInt(*this)/=rhs; } // 等号 bool operator ==(const ModInt &rhs){ return x==rhs.x; } bool operator !=(const ModInt &rhs){ return x!=rhs.x; } // 累乗 ModInt pow(fint64 n) const{ fint64 tmp=x; fint64 ret=1; while(n>0){ if(n&1) ret=ret*tmp%MOD; tmp=tmp*tmp%MOD; n>>=1ll; } return ModInt(ret); } // 逆元 ModInt inverse() const{ fint64 a=x,b=MOD,s=1,t=0; while(b>0){ fint64 u=a/b; a-=u*b; s-=u*t; swap(a,b); swap(s,t); } return ModInt(s); } // 入出力 friend istream &operator >>(istream &lhs,ModInt &rhs){ fint64 x; lhs>>x; rhs=ModInt(x); return lhs; } friend ostream &operator <<(ostream &lhs,const ModInt &rhs){ return lhs<; int main() { int n; cin >> n; int64_t k; cin >> k; mint sum = 0; for(int i = 0; i < n; ++i) { mint a; cin >> a; sum += a; } cout << sum * ((mint)2).pow(k) << '\n'; return 0; }