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
|
||||||||||||||
2015-09-16 05:39:29 Mohit
this question is really taught new thing.. |
||||||||||||||
2015-09-11 11:01:05 Prakhar Dev Gupta
1 1 2 3 4 will fetch what output and y? |
||||||||||||||
2015-09-09 13:45:20 Abishek
fast i/o needed . cost me two TLEs .. |
||||||||||||||
2015-08-30 16:50:47 sneh sajal
use scanf and think mathematically :) |
||||||||||||||
2015-08-25 13:44:19
easy.......taught me use of XOR.....and no use of long long in c++ 5.1.// |
||||||||||||||
2015-08-24 22:19:39
@poojan use fast i/p o/p in C to get less time |
||||||||||||||
2015-08-23 04:55:01 poojan
done with xor still tacking time!0.15 how can i do it batter! |
||||||||||||||
2015-08-16 07:00:26 Harsh Vardhan Ladha
use long long and yeah scanf and printf are faster than cin and cout, so use scanf & printf, even with xor technique |
||||||||||||||
2015-08-09 08:56:35
Use ios_base::sync_with_stdio(0); and scanf and printf for faster input and output.. :) |
||||||||||||||
2015-08-04 11:05:03 MishThi
1. Really good question. Taught me about the XOR operator.. :D 2. Same solution gave AC in "C" but TLE in "Python 2.7.10" :( |