记录编号 | 203667 | 评测结果 | WWWEEEEEEW | ||
---|---|---|---|---|---|
题目名称 | 平凡的数据范围 | 最终得分 | 0 | ||
用户昵称 | typhon | 是否通过 | 未通过 | ||
代码语言 | Pascal | 运行时间 | 0.469 s | ||
提交时间 | 2015-11-03 14:39:59 | 内存使用 | 0.17 MiB | ||
var n,i,j:longint; max:int64; a:array[1..20] of int64; begin assign(input,'xor_equ.in'); reset(input); assign(output,'xor_equ.out'); rewrite(output); readln(n); for i:=1 to n do read(a[i]); max:=0; for i:=1 to n do for j:=1 to n do if i xor j> max then max:=i xor j; writeln(max); close(input); close(output); end.