Submit | All submissions | Best solutions | Back to list |
OLOLO - Onotole needs your help |
Onotole has a lot of pyani. Each pyani has a number, writing on it. Pyanis with equal numbers are indistinguishable. Onotole knows everything, so, he knows that each pyani appeared twice, and only one pyani is unique. He wants to get вздръжни эффект, and he needs the unique pyani. Given the list of pyanis denote which one of them appeared once (it is guaranteed that other pyanis appeared twice). |
Input
First line of input contains number of pyanis N <= 500 000. Next N lines contain a single positive integer 1 <= Pi <= 10^9.
Output
Output one positive integer on pyani, which appeared once.
Example
Input:
3
1
8
1
Output: 8
Onotole has found not optimal AC algorithms, so all solutions will be rejudged. He is watching you.
Added by: | Efim |
Date: | 2010-11-04 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
hide comments
|
||||||||||||||
2016-03-23 15:54:44
simple sort method accepted :| |
||||||||||||||
2016-02-22 16:49:44
cout and cin gave a TLE . :/ |
||||||||||||||
2016-02-07 08:14:18
Amazing!! Didn't know about use of XOR this way. |
||||||||||||||
2016-01-26 07:15:01
I used hash map in c++ but get TLE .. :( |
||||||||||||||
2016-01-12 11:34:50 prateekmathur1991
Got AC with Java... :) Needs fast I/O though... |
||||||||||||||
2016-01-06 10:25:01
The problem seems to be impossible in C# \ Java. |
||||||||||||||
2016-01-02 20:19:44
Why did not anybody do it with C++ Maps? |
||||||||||||||
2015-12-12 16:05:59 Timmy Jose
For people using C++ streams, try setting ios_base::sync_with_stdio(false) in your program before doing any input operations. This should help. |
||||||||||||||
2015-12-12 16:04:40 Timmy Jose
@Sumit Suthar Mate, you really shouldn't leave the answer for other people to accidentally stumble upon. Thankfully I figured this out and then checked the comments (as I always do now - SPOJ really should have the comments collapsed, by the way). If SPOJ had a feature to report people, I'd report you in a heartbeat. Stop being a tool. |
||||||||||||||
2015-12-12 16:03:07 Timmy Jose
For all people, complaining, this is a simple but beautiful problem. It's a pretty simple one, but I love its requirement for one to think and figure out the simple way! Last edit: 2015-12-12 16:06:27 |