-
Notifications
You must be signed in to change notification settings - Fork 0
/
1373B.c
67 lines (67 loc) · 1.44 KB
/
1373B.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include<stdio.h>
#include<string.h>
int main(){
int t;
scanf("%d",&t);
char s[101];
for(int d=0;d<t;d++){
scanf("%s",&s);
int l=strlen(s);
int count=0;
int flag=0;
for(int i=0;i<l;i++){
for(int j=i+1;j<l;j++){
if(s[i]!=s[j]){
flag=1;
}
}
}
if(flag==0){
printf("NET\n");
}
else{
anon:
if(l<2){
if(count%2==0){
printf("NET\n");
}
else{
printf("DA\n");
}
}
else{
for(int i=0;i<l;i++){
if(s[i]!=s[i+1]){
count++;
for(int k=i;k<l-2;k=k+2){
s[k]=s[k+2];
s[k+1]=s[k+3];
}
l=l-2;
if(l>1){
int flag2=0;
for(int x=0;x<l;x++){
for(int y=x+1;y<l;y++){
if(s[x]!=s[y]){
flag2++;
}
}
}
if(flag2==0){
break;
}
}
goto anon;
}
}
if(count%2==0){
printf("NET\n");
}
else{
printf("DA\n");
}
}
}
}
return 0;
}