-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}")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32306번 Basketball Score (1) | 2024.09.17 |
---|---|
[백준/파이썬] 32314번 Christmas Tree Adapter (0) | 2024.09.17 |
[백준/파이썬] 32209번 다음 달에 봐요 (1) | 2024.09.14 |
[백준/파이썬] 32184번 디미고에 가고 싶어! (0) | 2024.09.13 |
[백준/파이썬] 24807번 Math Homework (0) | 2024.09.12 |