Roller coaster fun
Jimmy and his friends like to visit large theme parks. In the current theme park there are many roller coasters which then are categorized by Jimmy. He assigns a fun value to each coaster; however, the fun decreases with each run.
More formal: for a specific roller coaster i, Jimmy assigns two fun coefficients a_i and b_i. While riding this roller coaster for the k-th time, Jimmy gains a fun value of f(i, k) = a_i-(k-1)^2·b_i. If f(i, k) is non-positive, riding the roller coaster is no longer funny.
Jimmy tries to maximize the total fun until he leaves the park. Can you tell Jimmy how much fun he can gain for a given time?
Input
The input consists of a single test case.
The first line contains the integer N, where N is the amount of different roller coasters in the theme park (0 < N≤ 100).
The following N lines contain the integers a_i, b_i and t_i where a_i and b_i are the fun coefficients as specified above and t_i is the time for a single ride with the i-th roller coaster (0 ≤ a_i ≤ 1000; 0 ≤ b_i ≤ 1000; 0 < t_i ≤ 25000).
The next line contains a positive integer Q denoting the number of times that Jimmy is visiting the park (0 ≤ Q ≤ 1000). Each of the following Q lines contains an integral time T_i that Jimmy spends during his i-th visit (0 ≤ T_i ≤ 25000).
Output
For each of the Q possible times, print one line containing the maximal total fun value if Jimmy spends T_i minutes in the theme park.