본문 바로가기
Algorithm

[구현/수학] 백준 11874 ZAMKA - 파이썬(Python)

by jangThang 2022. 12. 30.
반응형

백준 온라인 저지

 

[ Contents ]

     

     

    1. 문제 (링크 참조)

     

    11874번: ZAMKA

    The impossible has happened. Bear G. has fallen into his own trap. Lured by a delicious box of Domaćica, without even thinking, he rushed and fell into his trap. In order to get out of the trap, he must solve the following task with your help. You are giv

    www.acmicpc.net

     

     

     

    2. 문제 풀이

     L부터 D까지 자릿수의 합을 하나하나 계산합니다. 그 중 최솟값과 최댓값을 출력합니다.

     

     

     

    3. 코드

    # 입력
    L = int(input())
    D = int(input())
    X = int(input())
    
    # 출력
    N = 10001  # 최소값
    M = 0  # 최댓값
    for i in range(L, D+1):
        res = 0
        for j in str(i):
            res += int(j)
        if res == X:
            N = min(N, i)
            M = max(M, i)
    print(N)
    print(M)

     

     

    star가 되고나서 Tistory

    반응형

    댓글