import sys import numpy as np read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines MOD = 998244353 def fft_convolve(f, g, MOD=MOD): """ 数列 (多項式) f, g の畳み込みの計算.上下 15 bitずつ分けて計算することで, 30 bit以下の整数,長さ 250000 程度の数列での計算が正確に行える. """ fft = np.fft.rfft ifft = np.fft.irfft Lf = f.shape[-1] Lg = g.shape[-1] L = Lf + Lg - 1 fft_len = 1 << L.bit_length() fl = f & (1 << 15) - 1 fh = f >> 15 gl = g & (1 << 15) - 1 gh = g >> 15 def conv(f, g): return ifft(fft(f, fft_len) * fft(g, fft_len))[:L] x = conv(fl, gl) % MOD y = conv(fl + fh, gl + gh) % MOD z = conv(fh, gh) % MOD a, b, c = map(lambda x: (x + .5).astype(np.int64), [x, y, z]) return (a + ((b - a - c) << 15) + (c << 30)) % MOD N, Q = map(int, readline().split()) A = np.array(readline().split(), np.int64) A %= MOD polys = np.empty((N, 2), np.int64) polys[:, 1] = 1 polys[:, 0] = A - 1 while len(polys) > 1: if len(polys) & 1: polys = np.pad(polys, ((0, 1), (0, 0))) polys[-1, 0] = 1 P = polys[:len(polys)//2] Q = polys[len(polys)//2:] polys = fft_convolve(P, Q) P = polys[0] for q in map(int, read().split()): print(P[q])