Problem F
Polynomial Multiplication 2
Input
Standard input begins with an integer
Each test case consists of two polynomials. A polynomial is
given by an integer
NB! The input and output files for this problem are quite large, which means that you have to be a bit careful about I/O efficiency.
Output
For each test case, output the product of the two polynomials, in the same format as in the input (including the degree). All coefficients in the result will fit in a signed 32-bit integer.
Sample Input 1 | Sample Output 1 |
---|---|
1 2 1 0 5 1 0 -2 |
3 0 -2 0 -10 |