n=int(input()) a=list(map(int,input().split())) v=[0]*n v[0]=1 for i in range(n-1): v[i+1]=(1000-a[i])/(1000/v[i]) print(1000-v[-1]*1000)