-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
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 13617번 Handebol (0) | 2022.11.19 |
---|---|
[백준/파이썬] 25904번 안녕 클레오파트라 세상에서 제일가는 포테이토칩 (0) | 2022.11.18 |
[백준/파이썬] 25985번 Fastestest Function (0) | 2022.11.16 |
[백준/파이썬] 25527번 Counting Peaks of Infection (0) | 2022.11.15 |
[백준/파이썬] 12351번 Hedgemony (Small) (0) | 2022.11.14 |