南邮 OJ 1127 Stick

来源:互联网 发布:图像扫描列数据 编辑:程序博客网 时间:2024/05/29 13:23

Stick

时间限制(普通/Java) : 2000 MS/ 6000 MS          运行内存限制 : 65536 KByte
总提交 : 194            测试通过 : 92 

比赛描述

Anthony has collected a large amount of sticks for manufacturing chopsticks. In order to simplify his job, he wants to fetch two equal-length sticks for machining at a time.  After checking it over, Anthony finds that it is always possible that only one stick is left at last,  because of the odd number of sticks and some other unknown reasons. For example, Anthony may have three sticks with length 1, 2, and 1 respectively. He fetches the first and the third for machining, and leaves the second one at last. Your task is to report the length of the last stick.

输入

The input file will consist of several cases.
Each case will be presented by an integer n (1<=n<=100, and n is odd) at first. Following that, n positive integers will be given, one in a line. These numbers indicate the length of the sticks collected by Anthony.
The input is ended by n=0.

输出

For each case, output an integer in a line, which is the length of the last stick.

样例输入

3
1
2
1
0

样例输出

2

题目来源

第九届中山大学程序设计竞赛预选题




#include<iostream>using namespace std;int main(){int N,t,r;while(cin>>N && N){r = 0;while(N--){cin>>t;r ^= t;}cout<<r<<endl;}}





0 0
原创粉丝点击