#include // c #include // io #include #include #include #include // container #include #include #include #include #include #include // other #include #include #include #include #include using namespace std; typedef long long ll;typedef unsigned long long ull;typedef long double ld; #define ALL(c) c.begin(),c.end() #define IN(l,v,r) (l<=v && v < r) template void UNIQUE(T v){v.erase(unique(ALL(v)),v.end());} //debug #define DUMP(x) cerr << #x <<" = " << (x) #define LINE() cerr<< " (L" << __LINE__ << ")" struct range{ struct Iter{ int v,step; Iter& operator++(){v+=step;return *this;} bool operator!=(Iter& itr){return vitr.v;} int& operator*(){return v;} }; Iter i, n; rrange(int i, int n,int step):i({i-1,step}), n({n-1,step}){} rrange(int i, int n):rrange(i,n,1){} rrange(int n) :rrange(0,n){} Iter& begin(){return n;} Iter& end(){return i;} }; //input template istream& operator >> (istream& is,pair& p){return is>>p.first>>p.second;} template istream& operator >> (istream& is,tuple& t){return is >> get<0>(t);} template istream& operator >> (istream& is,tuple& t){return is >> get<0>(t) >> get<1>(t);} template istream& operator >> (istream& is,tuple& t){return is >>get<0>(t)>>get<1>(t)>>get<2>(t);} template istream& operator >> (istream& is,tuple& t){return is >> get<0>(t)>>get<1>(t)>>get<2>(t)>>get<3>(t);} template istream& operator >> (istream& is,vector& as){for(int i:range(as.size()))is >>as[i];return is;} //output template ostream& operator << (ostream& os, const set& ss){for(auto a:ss){if(a!=ss.begin())os<<" "; os< ostream& operator << (ostream& os, const pair& p){return os< ostream& operator << (ostream& os, const map& m){bool isF=true;for(auto& p:m){if(!isF)os< ostream& operator << (ostream& os, const tuple& t){return os << get<0>(t);} template ostream& operator << (ostream& os, const tuple& t){return os << get<0>(t)<<" "<(t);} template ostream& operator << (ostream& os, const tuple& t){return os << get<0>(t)<<" "<(t)<<" "<(t);} template ostream& operator << (ostream& os, const tuple& t){return os << get<0>(t)<<" "<(t)<<" "<(t)<<" "<(t);} template ostream& operator << (ostream& os, const vector& as){for(int i:range(as.size())){if(i!=0)os<<" "; os< ostream& operator << (ostream& os, const vector>& as){for(int i:range(as.size())){if(i!=0)os< inline T INF(){assert(false);}; template<> inline int INF(){return 1<<28;}; template<> inline ll INF(){return 1LL<<58;}; template<> inline double INF(){return 1e16;}; template<> inline long double INF(){return 1e16;}; template inline T EPS(){assert(false);}; template<> inline int EPS(){return 1;}; template<> inline ll EPS(){return 1LL;}; template<> inline double EPS(){return 1e-8;}; template<> inline long double EPS(){return 1e-8;}; // min{2^r | n < 2^r} template T upper_pow2(T n){ T res=1;while(res T msb(T n){ int d=62;while((1LL<n)d--;return d;} template T pmod(T v,U M){return (v%M+M)%M;} template class modU{ public: inline ll pmod(ll v){return (v%M+M)%M;} inline ll ainv(ll a){return pmod(-a);} inline ll add(ll a,ll b){return pmod(a+b);} inline ll mul(ll a,ll b){return pmod(a*b);} ll pow(ll x, ll N){ ll res=1; while(N>0){ if(N%2)res=mul(res,x); x=mul(x,x); N/=2; } return res; } //O(logM) inline ll minv(ll a){return pow(a,M-2);} }; class NTT{ public: // n = 2^k // ω^n ≡ 1 (mod p) となるωとpを選択する const static ll nM = 1LL<<23; const static ll om = 183; const static ll p = 254*nM+1; modU

mu; // O(nlogn) // simple code void ntt(ll f[],int N,int s,ll om){ if(N==1) return; int s2=s*2, N2=N/2; ntt(f,N2,s2,om), ntt(f+s,N2,s2,om); vector tmp = vector(N); ll tom = 1,d =mu.pow(om,s); for(int i:range(N2)){ ll lv = f[s2*i], rv = mu.mul(tom,f[s+s2*i]); tmp[i] = mu.add(lv,rv), tmp[i+N2] = mu.add(lv,-rv); tom =mu.mul(tom,d); } for(int i:range(N)) f[s*i] = tmp[i]; } void ntt(vector& f,ll th){ ntt(&f[0],f.size(),1,th); } //O(nlogn) // [s_1,...,s_n] // s_k=Σ(0<=i<=k)a_i*b_(k-i) void convolution(vector& as,vector& bs){ int n = 1, vwn = as.size() + bs.size() - 1; while(n < vwn) n <<= 1; as.resize(n), bs.resize(n); ntt(as,mu.pow(om,nM/n)); ntt(bs,mu.pow(om,nM/n)); for(int i:range(n)) as[i] = mu.mul(as[i],bs[i]); ntt(as,mu.pow(mu.minv(om),nM/n)); ll invn =mu.minv(n); for(int i:range(n)) as[i] = mu.mul(as[i],invn); } }; class Main{ public: void run(){ int L,M,N;cin >> L >> M >> N; vector as(L);cin >> as; vector bs(M);cin >> bs; vector tas(2*N+2); for(int a:as)tas[N+1 + a]++; vector tbs(2*N+2); for(int b:bs)tbs[N+1 - b]++; int Q;cin >>Q; NTT ntt; ntt.convolution(tas,tbs); for(int i=2*(N+1);i<2*(N+1)+Q;i++){ cout << tas[i] <