记录编号 580579 评测结果 AAAAAAAAAA
题目名称 异或加密 最终得分 100
用户昵称 Gravatar┭┮﹏┭┮ 是否通过 通过
代码语言 C++ 运行时间 0.849 s
提交时间 2023-07-25 11:24:57 内存使用 10.50 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int N = 1000010;
long long n,ans;
long long a[N],b[N];
int main(){
    freopen("XORcipher.in","r",stdin);
    freopen("XORcipher.out","w",stdout);
    scanf("%lld",&n);
    for(int i = 1;i <= n;i++){
        scanf("%d",&a[i]);
        ans ^= a[i];
    }
    for(int i = 1;i <= n;i++){
        scanf("%lld",&b[i]);
        ans ^= b[i];
    } 
    printf("%lld\n",ans);
    
    return 0;
    
}