比赛 |
ctime蒟蒻生日赛 |
评测结果 |
AAAAATTTTT |
题目名称 |
数组异或 |
最终得分 |
50 |
用户昵称 |
Hyoi_ctime |
运行时间 |
10.080 s |
代码语言 |
C++ |
内存使用 |
1.66 MiB |
提交时间 |
2017-10-17 15:20:32 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
const int maxn=100000+10;
const int MOD=1000000000+7;
int n;
long long a[maxn],b[maxn];
inline void read()
{
freopen("xorarray.in","r",stdin);
freopen("xorarray.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)scanf("%lld",&a[i]);
for(int i=1;i<=n;i++)scanf("%lld",&b[i]);
for(int i=1;i<=n;i++)
{
long long ans=0;
for(int j=1;j<=i;j++)
for(int k=1;k<=i;k++)
ans=(ans+(a[j]^b[k])%MOD)%MOD;
printf("%lld ",ans);
}
}
int main()
{
read();
return 0;
}