본문 바로가기
Algorithm

[구현/수학] 백준 14682 Shifty Sum - 파이썬(Python)

by jangThang 2022. 12. 31.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    14682번: Shifty Sum

    Suppose we have a number like 12. Let’s define shifting a number to mean adding a zero at the end. For example, if we shift that number once, we get the number 120. If we shift the number again we get the number 1200. We can shift the number as many time

    www.acmicpc.net

     

     

     

    2. 문제 풀이

      N번만큼 X를 10^i 만큼 곱해서 더합니다.

     

     

    3. 코드

    # 입력
    N = int(input())
    K = int(input())
    
    # 출력
    res = N
    for i in range(1, K+1):
        res += N*(10**i)
    print(res)

     

     

    star가 되고나서 Tistory

    반응형

    댓글