跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2299. Jeff and Periods

    ID: 2305 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>模拟排序编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

Jeff and Periods

题目描述

B. Jeff and Periods
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

One day Jeff got hold of an integer sequence a1, a2, ..., an of length n. The boy immediately decided to analyze the sequence. For that, he needs to find all values of x, for which these conditions hold:

  • x occurs in sequence a.
  • Consider all positions of numbers x in the sequence a (such i, that ai=x). These numbers, sorted in the increasing order, must form an arithmetic progression.

Help Jeff, find all x that meet the problem conditions.

Input

The first line contains integer n (1≤n≤105). The next line contains integers a1, a2, ..., an (1≤ai≤105). The numbers are separated by spaces.

Output

In the first line print integer t − the number of valid x. On each of the next t lines print two integers x and px, where x is current suitable value, px is the common difference between numbers in the progression (if x occurs exactly once in the sequence, px must equal 0). Print the pairs in the order of increasing x.

Examples
Input
1
2
Output
1
2 0
Input
8
1 2 1 3 1 2 1 5
Output
4
1 2
2 4
3 0
5 0
Note

In the first test 2 occurs exactly once in the sequence, ergo p2=0.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1912 题。保留原作者与原赛事署名。