- Time limit: 1.00 s
- Memory limit: 512 MB
You are given a playlist of a radio station since its establishment. The playlist has a total of songs.
What is the longest sequence of successive songs where each song is unique?
Input
The first input line contains an integer : the number of songs.
The next line has integers : the id number of each song.
Output
Print the length of the longest sequence of unique songs.
Constraints
Example
Input:
8 1 2 1 3 2 7 4 2
Output:
5