はむこの勉強記録

http://bit.ly/2ktf20t の写し

AtCoder Beginner Contest 060 - C - Sentou

abc060.contest.atcoder.jp

以下はOKだが、

tmp = list(map(int, input().split()))

これはダメ。なんで?list()と[]って違うの????なんかtmpはmap objectとか言われた。pythonは話が通じないから好きじゃない…

tmp = [map(int, input().split())]

そもそもmap(int, input().split())の意味がよくわからない。一体どういう型になってるの?(これもまた、pythonは型がよくわからないからよくわからない…)