You are given an array A of N positive integer values. A subarray of this array is called Odd-Even subarray if the number of odd integers in this subarray is equal to the number of even integers in this subarray.
Find the number of Odd-Even subarrays for the given array.
Input Format:
The input consists of two lines.
First line denotes N - size of array.
Second line contains N space separated positive integers denoting the elements of array A.
Output Format:
Print a single integer, denoting the number of Odd-Even subarrays for the given array.
Constraints:
Let denotes the subarray of A starting at index i and ending at index j.
The four subarrays in which number of odd integers are equal to number of even integers are:
contains one odd and one even integer
contains one odd and one even integer
contains one odd and one even integer
contains two odd and two even integers