# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
955531 | rainboy | Who wants to live forever? (CERC12_B) | C11 | 0 ms | 348 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>
#define N 200000
int main() {
int t;
scanf("%d", &t);
while (t--) {
static char cc[N + 1];
int n, l, i, dies;
scanf("%s", cc), n = strlen(cc);
l = 0;
while ((n + 1 & 1 << l) == 0)
l++;
dies = 1;
for (i = 1 << l; i < n; i++)
if (cc[i] != cc[i - (1 << l)]) {
dies = 0;
break;
}
if (1 << l <= n && cc[(1 << l) - 1] != '0')
dies = 0;
printf(dies ? "DIES\n" : "LIVES\n");
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |