#P7003. [NEERC2013] Hack Protection

[NEERC2013] Hack Protection

题目描述

Pavel is sending to his friend Egor some array of non-negative integers. He wants to be sure, that nobody hacks the array before his friend gets it. To solve this problem Pavel need to compute some kind of a checksum or a digest for his array. Pavel has an innovative mind, so he invents the following algorithm to compute the digest for his array: count the number of subarrays in which the bitwise xor of the numbers in the subarray is equal to the bitwise and of the same numbers.

For example, consider an array of four binary numbers 01, 10, 11, and 11. The table below to the left lists the results of the bitwise xor of numbers for each subarray of this array, and the table below to the right list the results of the bitwise and of numbers for each subarray of this array. The rows of the table correspond to the starting elements of the subarray from the 1st1st element of the array to the 4th4th one, while columns correspond to the ending elements of the subarray. Matching values are highlighted with gray background.

Your task is to help Pavel compute this kind of a digest of the given array.

输入格式

The first line contains one integer n(1n100000)n (1 \le n \le 100 000) . The second line contains nn non-negative integers ai(0ai2311)a_{i} (0 \le a_{i} \le 2^{31}-1) that are written in decimal notation.

输出格式

On the first line of the output print Pavel's digest of the given array.

题目大意

给定一个序列aia_i,求有多少个区间满足区间内的数的异或和等于与的和的值。

4
1 2 3 3

6

提示

Time limit: 1 s, Memory limit: 128 MB.