[구현/수학] 백준 16546 Missing Runners - 파이썬(Python)


[구현/수학] 백준 16546 Missing Runners - 파이썬(Python)

[ Contents ] 1. 문제 (링크 참조) 16546번: Missing Runners The first line of input contains the integer N (1 ≤ N ≤ 215). The next line contains N −1 distinct integers in the range from 1 to N, representing the numbers of runners who have crossed the finish line. www.acmicpc.net 2. 문제 풀이 결승전을 통과한 주자의 번호가 주어집니다. 이를 통해 결승전을 통과하지 못한 주자를 찾아냅니다. 3. 코드 N = int(input()) numlist = list(map(int, input().split()))..


원문링크 : [구현/수학] 백준 16546 Missing Runners - 파이썬(Python)