백준 / 나누기 / 1075번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 나누기 / 1075번 (브론즈 2단계)문제 사이트: https://www.acmicpc.net/problem/1075 문제 설명 나의 풀이 A = int(input())B = int(input())front = A // 100result = front * 100while result % B != 0: result += 1print(str(result)[-2:])※ 알아야 할 것 / 나누기는 실수가 나오지만 //는 정수만 나온다.