ACM 2005 Lovely Numbers

来源:互联网 发布:怎样在淘宝联盟里赚钱 编辑:程序博客网 时间:2024/05/21 07:54

2005. Lovely Number

Constraints

Time Limit: 1 secs, Memory Limit: 64 MB

Description

Every time after got a solution from kevin, ivan repeats again and again,"Are there any better ones?". It seems more worse this time. Given a sequence of numbers, which ivan is sure that all of them appear even times except only one "lovely number" appears odd times, kevin must find out the lovely number as soon as possible. So, let's rock!

 

Input

There are multiple test cases.

Each test case contains two lines. The first line is an integer N, 1 <= N <= 10001, and N % 2 = 1. The second line contains N integers, separated by spaces.

Input is terminated by EOF.

 

Output

For each test case, output a line of an integer, which should be the lovely number.

Sample Input

31 2 157 7 7 7 372 2 4 4 4 2 2

Sample Output

234

Problem Source

2010中山大学新手赛-网络预选赛 ivankevin@argo

code:

#include<iostream>using namespace std;int main(){    int count;    int number;    while(cin>>count)    {         int ans=0;        for(int i=0;i<count;++i){            cin>>number;            ans^=number;        }        cout<<ans<<endl;    }    return 0;}

原创粉丝点击