#include using namespace std; #define _p(...) (void)printf(__VA_ARGS__) #define forr(x,arr) for(auto&& x:arr) #define _overload3(_1,_2,_3,name,...) name #define _rep2(i,n) _rep3(i,0,n) #define _rep3(i,a,b) for(int i=int(a);i=int(a);i--) #define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__) #define ALL(x) (x).begin(), (x).end() #define BIT(n) (1LL<<(n)) #define SZ(x) ((int)(x).size()) #define fst first #define snd second typedef long long ll; typedef vector vi;typedef vector vvi;typedef pair pii;typedef vector vpii; void Main() { int L, M, N; scanf("%d%d%d", &L, &M, &N); vi A(L), B(M); rep(i, L) scanf("%d", &A[i]); rep(i, M) scanf("%d", &B[i]); int Q; scanf("%d", &Q); using BS = bitset<100001>; BS as, bs; rep(i, L) as[A[i]] = 1; rep(i, M) bs[B[i]] = 1; rep(q, Q) { BS cs = as & bs; _p("%d\n", (int) cs.count()); bs <<= 1; } } int main() { cin.tie(0); ios::sync_with_stdio(false); Main(); return 0; }