You are given a list of
An arithmetic sequence is a sequence in which each term is obtained by adding the previous term by a constant number, called the common difference. For example,
Constraints
For all subtasks:
Points Awarded | |
---|---|
6 points | |
5 points | |
4 points |
Input Specification
The first line contains one integer
The second line contains
Output Specification
Output YES
if the list can be modified to become an arithmetic sequence and NO
otherwise.
Sample Input 1
4
3 1 5 10
Sample Output 1
YES
Explanation for Sample Output 1
We can change the
Sample Input 2
5
3 6 9 12 15
Sample Output 2
YES
Explanation for Sample Output 2
The list is already an arithmetic sequence, so no changes are necessary.
Comments
Can change element in array to negative number?