Divisible Array
Limits: 2 sec., 512 MiB
You are given a sequence a of n non-negative integers.
Determine if there exists a sequence b that is a permutation of a such that bi is a multiple of (bi+1+bi+2) for all 1≤i≤n−2.
Input
The first line contains an integer n – the number of elements in sequence a.
The second line contains n integers ai – the elements of sequence a.
Output
If there exists a sequence b
satisfying the condition, print Yes
. Otherwise, print
No
.
Constraints
3≤n≤106,
1≤ai≤109.
Samples
Input (stdin) | Output (stdout) |
---|---|
4 40 4444 4 4 | Yes |
Input (stdin) | Output (stdout) |
---|---|
7 4 7 77 4 477 4747 777444777 | No |
Notes
In the first example, the sequence b=(4444,40,4,4) satisfies the condition.
b1=4444 is a multiple of b2+b3=40+4=44.
b2=40 is a multiple of b3+b4=4+4=8.
In the second example, there does not exist a sequence satisfying the condition.
Source: Ukrainian National Programming Contest 2024 - Stage 2