본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25270번 99 Problems

by 현장 2022. 11. 17.

-Code

def sol(x):
    if x % 100 == 99:
        return True
    return False


n = int(input())
if 1 <= n <= 98:
    print(99)
    exit()
idx = 1

while 1:
    if sol(n + idx):
        print(n + idx)
        break
    if sol(n - idx):
        print(n - idx)
        break

    idx += 1