728x90
반응형
단순 사칙연산 문제이다.
N = int(input())
li = list(map(int, input().split()))
res = 0
for n in li:
res += 2 if n == 0 else 1/n
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 20944번 팰린드롬 척화비(python) (0) | 2021.03.04 |
---|---|
백준 알고리즘 15232번 Rectangles(python) (0) | 2021.03.04 |
백준 알고리즘 14790번 Tidy Numbers (Small)(python) (0) | 2021.03.04 |
백준 알고리즘 14920번 3n+1 수열(python) (0) | 2021.03.04 |
백준 알고리즘 14913번 등차수열에서 항 번호 찾기(python) (0) | 2021.03.04 |