n = int(input()) a = list(map(int, input().split())) ans = 1000 for x in a: ans *= (1000 - x) / 1000 ans = 1000 - ans print(ans)