Hi all, I am facing a runtime error for my code of Deputy chef problem in beginner section.Kindly have a look at my code, it shows successfully executed for the test cases, but when I submit it shows runtime Error.
Here is my code:
- t=int(input('Enter test cases: '))
while(t!=0): n=int(input('Enter
people in the formation: '))
a,d=[],[]
a=list(map(int,input('Enter attack
value: ').split()))
d=list(map(int,input('Enter Defense
value: ').split())) sum=[]
zeroth=int(a[1]+a[len(a)-1])
sum.append(zeroth) for i in
range(1,len(a)-1):
p=0
p=a[i-1]+a[i+1]
sum.appendĀ§ last=int(a[len(a)-2]+a[0])
sum.append(last) q=[i - j for i, j in zip(d,sum)] r=max(q)
if(r<=0): print(-1) else:
print(d[q.index(max(q))]) t-=1