#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // AtCoder // #include // using namespace atcoder; #ifdef LOCAL #define eprintf(...) fprintf(stderr, __VA_ARGS__) #else #define eprintf(...) #endif #define rep_(i, a_, b_, a, b, ...) for (int i = (a), i##_len = (b); i < i##_len; ++i) #define rep(i, ...) rep_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__) #define reprev_(i, a_, b_, a, b, ...) for (int i = (b)-1, i##_min = (a); i >= i##_min; --i) #define reprev(i, ...) reprev_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__) #define all(x) (x).begin(), (x).end() 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; } #define fls(x) (64 - __builtin_clzll(x)) #define pcnt(x) __builtin_popcountll(x) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair P; typedef long double ld; constexpr ll MOD = 998244353; // + - * / ^ ll mod(ll a) { ll res = a % MOD; if(res < 0) { return res + MOD; } return res; } ll mul_mod(ll a, ll b) { ll res = (a * b) % MOD; return mod(res); } ll pow_mod(ll a, ll b) { ll res = 1; while (b > 0) { if(b & 1) { res = res * a % MOD; } a = mul_mod(a, a); b >>= 1; } return res; } int main (void) { cin.tie(0); ios::sync_with_stdio(false); ll n, k; cin >> n >> k; vector a(n); rep (i, n) cin >> a[i]; ll sum = 0; rep (i, n) sum = mod(sum + a[i]); sum = mul_mod(sum, pow_mod(2, k)); cout << sum << "\n"; return 0; }