Problem3264--【Div2】删除有序数组中的重复项

3264: 【Div2】删除有序数组中的重复项

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Input

第一行一个整数n(2<=n<=1000000
接下来一个n个已排序的整数序列a,第i个数为ai, (1<=ai<=1000000000)

Output

一个整数k,表示原序列中互不相同的数字的个数
接下来k个整数,迫原顺序输出k个互不相同的整数

Sample Input Copy

10
1 1 1 2 2 3 4 4 5 6

Sample Output Copy

6
1 2 3 4 5 6

Source/Category