# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
241150 | brau13 | 마라톤 경주 (COCI14_utrka) | Cpython 3 | 505 ms | 17980 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
n = int(input())
people = {}
for i in range(2*n - 1):
j = input()
if j in people:
people[j] += 1
else:
people[j] = 1
for person in people.keys():
if people[person] % 2 != 0:
print(person)
break
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |