보안을 그리다, 훈이

[Baekjoon/Python3] 1075번 나누기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 1075번 나누기

HooNeee 2020. 12. 2. 22:50

[Baekjoon/Python3] 1075번 나누기

 

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())
n -= n % 100
while True:
    if n % f == 0:
        break
    else:
        n += 1
print(str(n)[-2:])

 

n = int(input())
f = int(input())
n -= n % 100
if n % f == 0:
    print('%02d' %(n % 100))
else:
    print('%02d' %((n + (f - n % f)) % 100))
Comments