Granica
의견: 0
Luka started driving international routes with his truck. His biggest problem is the border with Slovenia. The border is a point of entrance into the European Union, so every truck is thoroughly examined. Because of this, Luka always has to wait several hours there. To kill the time, he comes up with various logic and math games.
In one of them, Luka first reads the numbers off of \(N\) license plates and writes them down on a piece of paper. Then he tries to find an integer \(M\) greater than \(1\) such that all integers on the paper give the same remainder when divided by \(M\). Luka tries to find as many such integers \(M\) as possible.
Write a program that, given Luka's \(N\) integers, determines all such integers \(M\).
The first line contains the integer \(N\) (\(2 \le N \le 100\)), the number of integers on paper.
Each of the following \(N\) lines contains one integer between \(1\) and \(1\,000\,000\,000\) (one billion). All these integers will be distinct.
The input data will guarantee that at least one integer \(M\) will always exist.
Output all integers \(M\) separated by spaces, in any order.
Scoring: In test cases worth \(60\%\) of points, each of the \(N\) numbers will be at most \(10000\).
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Subtask 1 | 50점 |
3
6
34
382 4All integers give a remainder of 0 when divided by 2 and the remainder 2 when divided by 4.
5
5
17
23
14
833평가 및 의견
Granica
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Granica