Count divisors of array multiplication
Given an array with N elements, the task is to find the count of factors of a number X, which is the product of all array elements. Examples: Input : 5 5 Output : 3 5 * 5 = 25, the factors of 25 are 1, 5, 25 whose count is 3 Input : 3 5 7 Output : 8 3 * 5 * 7 = 105, the factors of 105 are 1, 3, 5, 7