PS/Baekjoon Online Judge

[백준 06974] Long Division [Python]

kimyoungrok 2024. 8. 15. 15:26
728x90

문제

In days of yore (circa 1965), mechanical calculators performed division by shifting and repeated subtraction. For example, to divide 987654321 by 3456789, the numbers would first be aligned by their leftmost digit (see (1) below), and the divisor subtracted from the dividend as many times as possible without yielding a negative number. The number of successful subtractions (in this example, 2) is the first digit of the quotient. The divisor, shifted to the right (see (2) below), is subtracted from the remainder several times to yield the next digit, and so on until the remainder is smaller than the divisor.

Write a program to implement this method of division.

입력

The first line of the input file contains a positive integer n, n ≤ 20, which represents the number of test cases which follow. Each test case is provided on a pair of lines, with the number on the first line being the dividend, and the number on the second line being the divisor. Each line will contain a positive integer of up to 80 digits in length.

출력

For each pair of input lines, your output file should contain a pair of lines representing the quotient followed by the remainder. Output for different test cases should be separated by a single blank line. Your output should omit unnecessary leading zeros.


풀이

두 수를 입력받아 나누었을 때 몫과 나머지를 출력하면 된다.

divmod를 사용해서 쉽게 해결했다.


소스코드

보기


출처

https://www.acmicpc.net/problem/6974

728x90