题库练习 Add Points
← 上一题 下一题 →

A11649 | Add Points

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

There are $n$ points on a straight line, and the $i$ -th point among them is located at $x_{i}$ . All these coordinates are distinct.

Determine the number $m$ — the smallest number of points you should add on the line to make the distances between all neighboring points equal.

输入格式

The first line contains a single integer $n$ ( $3<=n<=100000$ ) — the number of points.

The second line contains a sequence of integers $x_{1},x_{2},...,x_{n}$ ( $-10^{9}<=x_{i}<=10^{9}$ ) — the coordinates of the points. All these coordinates are distinct. The points can be given in an arbitrary order.

输出格式

Print a single integer $m$ — the smallest number of points you should add on the line to make the distances between all neighboring points equal.

输入输出样例

输入 #1
3
-5 10 5
输出 #1
1
输入 #2
6
100 200 400 300 600 500
输出 #2
0
输入 #3
4
10 9 0 -1
输出 #3
8
C++ 编辑器
输入
输出