- Time limit: 1.00 s
- Memory limit: 512 MB
Given an array of integers, your task is to find the maximum xor sum of a subset.
Input
The first line has an integer : the size of the array.
The next line has integers : the contents of the array.
Output
Print one integer: the maximum xor sum of a subset.
Constraints
Example
Input:
4 1 6 12 6
Output:
13