728x90
반응형
단순 구현 문제이다.
while 1:
n = float(input())
if n == 0:
break
i = 2
t = 0
while t < n:
t += 1/i
i += 1
print(f"{i-2} card(s)")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4714번 Lunacy(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 4690번 완전 세제곱(python) (0) | 2021.02.13 |
백준 알고리즘 4635번 Speed Limit(python) (0) | 2021.02.13 |
백준 알고리즘 4623번 Copier Reduction(python) (0) | 2021.02.13 |
백준 알고리즘 4493번 가위 바위 보?(python) (0) | 2021.02.13 |