Help me in solving AMR15A problem

My issue

i use the all steps but, still getting wrong answer? what was the issue in it?

My code

# cook your dish here
n = int(input())
arr = list(map(int,input().split()))
even = 0
odd = 0
for i in arr:
    if i%2 == 0:
        even += 1
    else:
        odd += 1
if even>odd:
    print("READY FOR BATTLE")
elif even==odd and even<odd:
    print("NOT READY")

    

Problem Link: AMR15A Problem - CodeChef

if even>odd:
print("READY FOR BATTLE")
else:
print("NOT READY")

the main problem in your code inside elif statement, you should write elif even == odd or even<odd, because even==odd & even<odd both cannot be true at the same time