比赛 NOIP模拟赛1 评测结果 AAATTTTTTT
题目名称 异或 最终得分 30
用户昵称 偽りの神に抗え 运行时间 7.013 s
代码语言 C++ 内存使用 2.92 MiB
提交时间 2018-02-08 20:04:12
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1005;
int n,np=0,k,a[maxn],d[maxn*maxn];
int main()
{
	freopen("xorxor.in","r",stdin);
	freopen("xorxor.out","w",stdout);
	scanf("%d%d",&n,&k);
	for(int i=1;i<=n;i++)
	scanf("%d",&a[i]);
	for(int i=1;i<n;i++)
	for(int j=i+1;j<=n;j++)
	d[++np]=a[i]^a[j];
	sort(d+1,d+np+1);
	printf("%d",d[k]);
	return 0;
}