You are given an array A containing N integers. The special product of each ith integer in this array is defined as the product of the following:
Write a program to find the maximum special product of any integer in the array.
NOTE: As the answer can be large, output your answer modulo 109 + 7.
Problem Constraints
1 <= N <= 1051 <= A[i] <= 109
Input Format
First and only argument is an integer array A.
Output Format
Return an integer denoting the maximum special product of any integer.
Example Input
Input 1:
A = [1, 4, 3, 4]
Input 2:
A = [10, 7, 100]
Example Output
Output 1:
3