/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 13ms 3.02 MiB
#2 Accepted 68ms 12.914 MiB
#3 Accepted 48ms 12.914 MiB
#4 Accepted 47ms 12.914 MiB
#5 Accepted 48ms 12.914 MiB
#6 Accepted 61ms 12.914 MiB

Code

import sys

input = lambda: sys.stdin.readline().rstrip("\r\n")
rint = lambda: int(input())
rlist = lambda: list(map(int, input().split()))


N = rint()
ans = 0
for x in rlist():
    ans ^= x
print(ans)

Information

Submit By
Type
Submission
Problem
P1095 Uncovering the Lone Heart
Contest
Brain Booster #6
Language
Python 3 (Python 3.12.3)
Submit At
2024-10-03 15:31:58
Judged At
2024-10-03 15:31:58
Judged By
Score
100
Total Time
68ms
Peak Memory
12.914 MiB