리모컨
-
[백준] 1107번 리모컨 (by Python)Programming/Algorithm 2021. 2. 28. 19:51
문제 https://www.acmicpc.net/problem/1107 1107번: 리모컨 첫째 줄에 수빈이가 이동하려고 하는 채널 N (0 ≤ N ≤ 500,000)이 주어진다. 둘째 줄에는 고장난 버튼의 개수 M (0 ≤ M ≤ 10)이 주어진다. 고장난 버튼이 있는 경우에는 셋째 줄에는 고장난 버튼 www.acmicpc.net 풀이 nums = set(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']) n = int(input()) m = int(input()) if m: broken = set(input().split()) nums -= broken ans = abs(n - 100) if nums: i = 0 while True: left = 0 if n ..