๋ถ๋ฅ : ๋์ ๋๋ฆฌํ๋ฉด์ ์ผ๋ก ๋์ ๋๋ฆฌ๋ฅผ ์ฌ์ฉํด์ ํธ๋ ๋ฌธ์ ์ด์ง๋ง, ๋๊ฐ์ง ํด๊ฒฐํด์ผ ํ๋ ์ด์๋ค์ด ๋ ์๋ค.1. Value ๋ก Key ๊ฐ์ ์ฐพ๊ธฐ.2. input() ์์ ๋ฐ์ํ๋ ์๊ฐ์ด๊ณผ ๋ฌธ์ ํด๊ฒฐํ๊ธฐkeypoint : python input / value๋ก key ์ฐพ๊ธฐ codeimport sys n,m = map(int,input().split(' '))pocketmon_list = dict()rev_poecketmon_list = dict()cnt=1for i in range(0,n): name = sys.stdin.readline().strip() pocketmon_list[str(cnt)] = name rev_poecketmon_list[name] = str(cnt) cnt+=..