The XOR Largest Pair
Description
在给定的 N 个整数 Al , A2,…,AN中选出两个进行xor(异或)运算,得到的结果最大是多少?
Format
Input
第一行一个整数N。
第二行N个整数 Ai。
Output
一个整数表示答案。
Sample 1
Input
5
2 9 5 7 0
Output
14
Limitation
1s, 32MiB for each test case.
【数据规模】
N<=10^5 , 0<= Ai <2^31。