码迷,mamicode.com
首页 > 其他好文 > 详细

杭电acm find your present (2)

时间:2015-05-23 11:12:04      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

题目地址:http://acm.hdu.edu.cn/game/entry/problem/show.php?chapterid=1&sectionid=2&problemid=11

使用异或,有个注意的问题就是不能使用cin,实在是太慢了。

c++ 源码:

#include<iostream>
#include<cstdio>
#include<map>
using namespace std;
int main(){
    int n;
    while(scanf("%d",&n)==1&&n!=0){
        int res=0,b;
        for(int i=0;i<n;i++){
            scanf("%d",&b);
            res =res^b;
        }
        printf("%d\n",res);
    }
    return 0;
}

 

杭电acm find your present (2)

标签:

原文地址:http://www.cnblogs.com/jackwuyongxing/p/4523742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!