Accepted
Code
#include <stdio.h>
int main() {
int N;
scanf("%d", &N);
int A;
int result = 0;
for (int i = 0; i < N; i++) {
scanf("%d", &A);
result ^= A;
}
printf("%d\n", result);
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1095 Uncovering the Lone Heart
- Contest
- Brain Booster #6
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-10-03 16:24:32
- Judged At
- 2024-11-11 02:48:30
- Judged By
- Score
- 100
- Total Time
- 10ms
- Peak Memory
- 424.0 KiB