#include<bits/stdc++.h>
using namespace std;

//#define int long long

typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
#define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++)
template<class T,class U>inline void chmin(T &t,U f){if(t>f)t=f;}
template<class T,class U>inline void chmax(T &t,U f){if(t<f)t=f;}

typedef bitset<100000>bs;

signed main(){
    int L,M,N;
    cin>>L>>M>>N;

    bs A,B;
    rep(i,L){
        int a;cin>>a;A.set(--a);
    }

    rep(i,M){
        int b;cin>>b;B.set(--b);
    }

    int Q;scanf("%d",&Q);
    rep(i,Q){
        printf("%d\n",(A&B).count());
        B<<=1;
    }


    return 0;
}