본문 바로가기
python-algorithm

백준 4696 St. Ives

by 무적김두칠 2022. 8. 2.

1
2
3
4
5
6
7
8
9
10
11
def sol(n):
    ans=0
    for i in range(5):
        ans += n**i
    return ans
 
while 1:
    n=float(input())
    if n==0 :
        break
    print("%.2f"%sol(n))
cs
반응형

댓글