- 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 subarray.
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 in a subarray.
Constraints
Example
Input:
4 5 1 5 9
Output:
13