/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 16ms 3.129 MiB
#2 Accepted 52ms 12.773 MiB
#3 Accepted 54ms 12.855 MiB
#4 Accepted 52ms 13.004 MiB
#5 Accepted 53ms 12.953 MiB
#6 Accepted 54ms 12.961 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-12-17 11:37:02
Judged By
Score
100
Total Time
54ms
Peak Memory
13.004 MiB