https://www.acmicpc.net/problem/1075 1075번: 나누기 첫째 줄에 N, 둘째 줄에 F가 주어진다. N은 100보다 크거나 같고, 2,000,000,000보다 작거나 같은 자연수이다. F는 100보다 작거나 같은 자연수이다. www.acmicpc.net 내 답안 N = int(input()) F = int(input()) nature = N lst = [] while (str(N)[-2:] != '00'): N -= 1 if N%F == 0: lst.append(str(N)[-2:]) if len(lst) > 0: print(min(lst)) else: for i in range(nature, 20000000001): if i % F == 0: print(str(i)[-2:]..