比赛 “Asm.Def战记之拉格朗日点”杯 评测结果 AAWWWWWAWW
题目名称 Asm.Def的微小贡献 最终得分 30
用户昵称 1azyReaper 运行时间 0.002 s
代码语言 C++ 内存使用 0.46 MiB
提交时间 2015-11-04 11:55:53
显示代码纯文本
#include <fstream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#define ifs ifstream
#define ofs ofstream
#define MAX 10010
using namespace std;
typedef long long ll;
ifs fin("asm_contribute.in");
ofs fout("asm_contribute.out");
ll a[MAX],ans[MAX];
int n;
int read()
{
	fin>>n;
	for(int i=1;i<=n;i++)
		fin>>a[i];
	return 0;
}
int work()//暴力出奇迹(啦啦啦)
{
	for(int k=1;k<=n;k++)
	{
		ans[k]=ans[k-1]^a[k];
		for(int i=k+1;i<=n;i++)
		{
			if((a[i]^ans[k])==0)
			{
				fout<<k+1<<endl;
				for(int j=1;j<=k;j++)
				{
					fout<<j<<' ';
				}fout<<i<<endl;
				return 0;
			}
		}
	}
	return 0;
}
int main()
{
	read();
	work();
	return 0;
}