import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.io.StreamTokenizer; import java.util.InputMismatchException; public class Main_yukicoder206 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int l = sc.nextInt(); int m = sc.nextInt(); int n = sc.nextInt(); long[] a = new long[(2 * n + 63) / 64]; long[] b = new long[(2 * n + 63) / 64]; for (int i = 0; i < l; i++) { setBit(a, sc.nextInt() - 1); } for (int i = 0; i < m; i++) { setBit(b, sc.nextInt() - 1); } int q = sc.nextInt(); for (int i = 0; i < q; i++) { pr.println(countBit(a, b)); shiftBit(b); } pr.close(); sc.close(); } private static void shiftBit(long[] b) { boolean carry = false; for (int i = 0; i < b.length; i++) { boolean tmp = (b[i] & 0x8000000000000000L) != 0; b[i] <<= 1; if (carry) { b[i] |= 0x1L; } carry = tmp; } } private static int countBit(long[] a, long[] b) { int ret = 0; for (int i = 0; i < a.length; i++) { long tmp = a[i] & b[i]; ret += Long.bitCount(tmp); } return ret; } private static void setBit(long[] a, int i) { int n = i / 64; long mask = 0x1L << (i % 64); a[n] |= mask; } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; StreamTokenizer st; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); st = new StreamTokenizer(br); } String next() throws RuntimeException { try { if (st.nextToken() != StreamTokenizer.TT_WORD) { throw new InputMismatchException(); } return st.sval; } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { try { if (st.nextToken() != StreamTokenizer.TT_NUMBER) { throw new InputMismatchException(); } return (int)st.nval; } catch (IOException e) { throw new IllegalStateException(); } } long nextLong() throws RuntimeException { try { if (st.nextToken() != StreamTokenizer.TT_NUMBER) { throw new InputMismatchException(); } return (long)st.nval; } catch (IOException e) { throw new IllegalStateException(); } } float nextFloat() throws RuntimeException { try { if (st.nextToken() != StreamTokenizer.TT_NUMBER) { throw new InputMismatchException(); } return (float)st.nval; } catch (IOException e) { throw new IllegalStateException(); } } double nextDouble() throws RuntimeException { try { if (st.nextToken() != StreamTokenizer.TT_NUMBER) { throw new InputMismatchException(); } return st.nval; } catch (IOException e) { throw new IllegalStateException(); } } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }