第三个点的数据可能有多余的空格,我用 input().split(' ') 读入数据直接 RE 了,用 input().strip().split(' ') 就 A 了。
input().split(' ')
input().strip().split(' ')