#D11348. by-M grid calculation
by-M grid calculation
by-M grid calculation
Problem Statement
Have you experienced -by- grid calculation? It's a mathematical exercise common in Japan. In this problem, we consider the generalization of the exercise, -by- grid calculation.
In this exercise, you are given an -by- grid (i.e. a grid with rows and columns) with an additional column and row at the top and the left of the grid, respectively. Each cell of the additional column and row has a positive integer. Let's denote the sequence of integers on the column and row by and , and the -th integer from the top in the column is and the -th integer from the left in the row is , respectively.
Initially, each cell in the grid (other than the additional column and row) is blank. Let be the cell at the -th from the top and the -th from the left. The exercise expects you to fill all the cells so that the cell has . You have to start at the top-left cell. You repeat to calculate the multiplication for a current cell , and then move from left to right until you reach the rightmost cell, then move to the leftmost cell of the next row below.
At the end of the exercise, you will write a lot, really a lot of digits on the cells. Your teacher, who gave this exercise to you, looks like bothering to check entire cells on the grid to confirm that you have done this exercise. So the teacher thinks it is OK if you can answer the -th digit (not integer, see an example below), you have written for randomly chosen . Let's see an example.
For this example, you calculate values on cells, which are , , , , , in order. Thus, you would write digits 8, 5, 6, 2, 4, 1, 7, 3. So the answer to a question is .
You noticed that you can answer such questions even if you haven't completed the given exercise. Given a column , a row , and integers , your task is to answer the -th digit you would write if you had completed this exercise on the given grid for each . Note that your teacher is not so kind (unfortunately), so may ask you numbers greater than you would write. For such questions, you should answer 'x' instead of a digit.
Input
The input consists of a single test case formatted as follows.
The first line contains two integers () and (), which are the number of rows and columns of the grid, respectively.
The second line represents a sequence of integers, the -th of which is the integer at the -th from the top of the additional column on the left. It holds for .
The third line represents a sequence of integers, the -th of which is the integer at the -th from the left of the additional row on the top. It holds for .
The fourth line contains an integer (), which is the number of questions your teacher would ask.
The fifth line contains a sequence of integers, the -th of which is the -th question from the teacher, and it means you should answer the -th digit you would write in this exercise. It holds for .
Output
Output a string with characters, the -th of which is the answer to the -th question in one line, where the answer to -th question is the -th digit you would write if is no more than the number of digits you would write, otherwise 'x'.
Examples
Input | Output |
---|
2 3 8 1 1 7 3 5 1 2 8 9 1000000000000000
|
853xx
3 4 271 828 18 2845 90 45235 3 7 30 71 8 61 28 90 42
|
7x406x0
Example
Input
Output
inputFormat
Input
The input consists of a single test case formatted as follows.
The first line contains two integers () and (), which are the number of rows and columns of the grid, respectively.
The second line represents a sequence of integers, the -th of which is the integer at the -th from the top of the additional column on the left. It holds for .
The third line represents a sequence of integers, the -th of which is the integer at the -th from the left of the additional row on the top. It holds for .
The fourth line contains an integer (), which is the number of questions your teacher would ask.
The fifth line contains a sequence of integers, the -th of which is the -th question from the teacher, and it means you should answer the -th digit you would write in this exercise. It holds for .
outputFormat
Output
Output a string with characters, the -th of which is the answer to the -th question in one line, where the answer to -th question is the -th digit you would write if is no more than the number of digits you would write, otherwise 'x'.
Examples
Input | Output |
---|
2 3 8 1 1 7 3 5 1 2 8 9 1000000000000000
|
853xx
3 4 271 828 18 2845 90 45235 3 7 30 71 8 61 28 90 42
|
7x406x0
Example
Input
Output
样例