#include <bits/stdc++.h>
using namespace std;
const int MAXN = 200100;
char A[MAXN];
bool solve() {
int N;
for(N = 0; A[N]; N++);
bool b = true;
for(int i = 0; i < N; i++) b &= A[i] == '0';
if(b) return false;
if(N % 2 == 0) return true;
int two;
for(two = 1; two <= N; two *= 2);
if(two == N + 1) return false;
b = A[0] == '1' && A[N] == '1';
for(int i = 1; i < N; i++) b &= A[i] != A[i - 1];
if(b) return false;
return true;
}
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int T;
cin >> T;
while(T--) {
cin >> A;
if(solve()) cout << "LIVES\n";
else cout << "DIES\n";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |