2 条题解
- 1
信息
- ID
- 2337
- 时间
- 2000ms
- 内存
- 4MiB
- 难度
- 2
- 标签
- 递交数
- 45
- 已通过
- 29
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int result=0;
for(int i=0;i<n;i++){
int length;
cin>>length;
result^=length;
}
cout<<result<<endl;
return 0;
}