# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
392820 | rainboy | Utrka (COCI14_utrka) | C11 | 30 ms | 2508 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.
#include <stdio.h>
#include <string.h>
int main() {
static char cc[32];
int n;
scanf("%d", &n), n = n * 2 - 1;
while (n--) {
static char aa[32];
int l, h;
scanf("%s", aa), l = strlen(aa);
for (h = 0; h < l; h++)
cc[h] ^= aa[h];
}
printf("%s\n", cc);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |