bupt 84 Single Number(水题)

来源:互联网 发布:java网络编程 pdf 编辑:程序博客网 时间:2024/04/30 13:50

思路:排个序然后扫一遍即可


#include<iostream>#include<cstdio>#include<algorithm>using namespace std;#define LL long longconst int maxn = 100000+100;LL a[maxn];int main(){int n;while(scanf("%d",&n)!=EOF){         for(int i = 1;i<=n;i++) scanf("%lld",&a[i]); sort(a+1,a+1+n); for(int i = 1;i<=n;i+=3) {             if(a[i]==a[i+1]&&a[i+1]==a[i+2]) continue; else { printf("%lld\n",a[i]); break; } }}}


时间限制 1000 ms 内存限制 65536 KB

题目描述

Given an array with N integers where all elements appear three times except for one. Find out the one which appears only once.

输入格式

Several test cases are given, terminated by EOF.

Each test case consists of two lines. The first line gives the length of array N(1N105), and the other line describes the Nelements. All elements are ranged in [0,2631].

输出格式

Output the answer for each test case, one per line.

输入样例

41 1 1 3101 2 3 1 2 3 1 2 3 4

输出样例

34

0 0