Time limit: 1s
Memory limit: 64MB
Input:
Output:
Task
You are given an array with elements, which are natural numbers, numbered from to .
The GCDness of a natural number is defined as the number of values in the array that are exactly divisible by . Determine the natural number with the highest GCDness. If there are multiple such numbers, you can print any of them.
Input data
The first line contains , the size of the array. The next line contains the numbers from the array.
Output data
The first line should contain a single integer, the GCDness of the array.
Constraints and clarifications
- ;
- ;
- If there are multiple such numbers, you can print any of them.
Example 1
stdin
5
8 9 18 90 72
stdout
9
Explanation
The GCDness value of is ( are multiples of ), as is the case for and . You may output any of these values, as they are all correct.