백준 / 0과 1 / 8111번 / Python
·
코딩테스트(프로그래머스 & 백준)/백준-Python
*문제 출처는 백준에 있습니다. 문제 제목: 0과 1 / 8111번 (플래티넘 5단계)문제 사이트: https://www.acmicpc.net/problem/8111 문제 설명 나의 풀이from collections import dequedef find_gusa_number(N): # 큐 초기화: ("1", 1 % N)로 시작 queue = deque([("1", 1 % N)]) visited = set([1 % N]) while queue: current_number, remainder = queue.popleft() # 만약 나머지가 0이라면 그 수가 답이다. if remainder == 0: retu..