본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 9161번 Sir Bedavere’s Bogus Division Solutions

by 현장 2024. 9. 15.

-Code

for i in range(100, 1000):
    for j in range(100, 1000):
        if i % 111 == 0 and j % 111 == 0:
            continue
        if (i * (j % 100) == j * (i // 10)) and (i % 10 == j // 100):
            print(f"{i} / {j} = {i // 10} / {j % 100}")