๊ด๋ จ ํ์ด๋ฅผ ๋ดค์๋ ํ์๋ฒ์ผ๋ก ์ ๊ทผํด์ผ ํ๋ ํ๋ค๊ฐ, ์ฃผ์ด์ง ์์ ์ผ์ด์ค๋ก ๋์ ํ ์ ๊ทผํ ์๊ฐ ์์ด์, dfs๋ก ์ ๊ทผํด์ ๋ชจ๋ ๊ฒฝ์ฐ์ ์์ ๋ํด ๊ฐ์ง๊ณ ์๋ค๊ฐ ์ต๋๊ฐ์ ๋ณด์ฌ์ฃผ๋ ์ ๊ทผ ๋ฐฉ์์ ํํ๋ค. N = int(input()) results = list() # history ๋ณ์๋ debug ์ฉ๋ def dfs(start, current, history): if (start >= len(meetingList)): results.append(current) return # ์ค๋ ์กํ์๋ ๋ฏธํ ์ ์งํํ ๊ฒฝ์ฐ next = start + meetingList[start][0] if (next