切分连续相同的字串,计数
利用 python 的 groupby 的连续分段特性解决
from itertools import groupby input() print(len(list(groupby(input().split()))))