#Lutece0372. Brute Xor
Brute Xor
Migrated from Lutece 372 Brute Xor
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Your job is to calculate $\sum(S_1\rm\ XOR\ S_2\rm\ XOR \cdots XOR\ S_n)\rm\ mod\ 1000000007$, where , .
Input
The first line of the input is an integer (), which stands for the number of test cases you need to solve.
Every test case begins with an integer (), and followed by n pairs of integers (). Every pair occupies a line.
Output
For every test case, you should output Case #k:
first, where indicates the case number and starts at . Then output the answer. See sample for more details.
Samples
2
1
1 10
2
1 2
2 3
Case #1: 55
Case #2: 6
Note
A bitwise performs the logical operation on each pair of corresponding bits. The result in each position is if the two bits are different, and if they are the same. For example: 0101
(decimal )0011
(decimal ) 0110
(decimal ).
Resources
The 9th UESTC Programming Contest Final