본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25756번 방어율 무시 계산하기

by 현장 2024. 5. 1.

-Code

n = int(input())
ignore_defence = list(map(int, input().split()))
res = 0

for posion in ignore_defence:
    res += (100 - res) * (posion / 100)
    print(res)