import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int LIMIT = 300; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); int[] counts = new int[100001]; int[][] imos = new int[LIMIT][100001]; for (int i = 0; i < n; i++) { int left = sc.nextInt(); int right = sc.nextInt(); int div = sc.nextInt(); int mod = sc.nextInt(); if (div >= LIMIT) { if (left % div <= mod) { left += mod - left % div; } else { left += div - left % div + mod; } for (int j = left; j <= right; j += div) { counts[j]++; } } else { if (left % div <= mod) { left += mod - left % div; } else { left += div - left % div + mod; } if (left <= 100000) { imos[div][left]++; } if (right % div < mod) { right += mod - right % div; } else { right += div - right % div + mod; } if (right <= 100000) { imos[div][right]--; } } } for (int i = 1; i < LIMIT; i++) { for (int j = 1; j <= 100000; j++) { if (j - i >= 0) { imos[i][j] += imos[i][j - i]; } } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < m; i++) { int x = sc.nextInt(); int ans = counts[x]; for (int j = 1; j < LIMIT; j++) { ans += imos[j][x]; } sb.append(ans).append("\n"); } System.out.print(sb); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }