n = eval(input());
a = input().split(" ")
b = input().split(" ")
for i in range(n):
if a[i].isnumeric():
a[i] = eval(a[i])
if b[i].isnumeric():
b[i] = eval(b[i])
variables = {}
flag = True;
for i in range(n):
if a[i]!=b[i] and type(a[i])==str and type(b[i])==str:
if a[i] in variables.keys() and b[i] in variables.keys():
if(variables[a[i]]!=variables[b[i]]):
flag = False
break
elif a[i] in variables.keys():
variables[b[i]] = variables[a[i]]
elif b[i] in variables.keys():
variables[a[i]] = variables[b[i]]
else:
for k in range(n):
if(a[k]==a[i]):
a[k] = b[i]
if(b[k]==a[i]):
b[k] = b[i]
elif a[i]!=b[i] and type(a[i])==str:
if a[i] in variables.keys():
if(variables[a[i]]!=b[i]):
flag = False
break
else:
variables[a[i]] = b[i]
elif a[i]!=b[i] and type(b[i])==str:
if b[i] in variables.keys():
if(variables[b[i]]!=a[i]):
flag = False
break
else:
variables[b[i]] = a[i]
if flag:
print("DA")
else:
print("NE")
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
10 ms |
2908 KB |
Output is correct |
2 |
Incorrect |
11 ms |
2916 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
3016 KB |
Output is correct |
2 |
Incorrect |
12 ms |
2920 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
11 ms |
3164 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
175 ms |
3164 KB |
Output is correct |
2 |
Runtime error |
11 ms |
3164 KB |
Execution failed because the return code was nonzero |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1084 ms |
4508 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |