RoAlgo Weekly Contest #0 | GCDness

This was the problem page during the contest. Access the current page here.
Time limit: 1s Memory limit: 64MB Input: Output:

Task

You are given an array with nn elements, which are natural numbers, numbered from 11 to nn.

The GCDness of a natural number k2k \geq 2 is defined as the number of values in the array that are exactly divisible by kk. 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 nn, the size of the array. The next line contains the nn numbers from the array.

Output data

The first line should contain a single integer, the GCDness of the array.

Constraints and clarifications

  • 1n1001 \leq n \leq 100;
  • 2vi10002 \leq v_i \leq 1000;
  • 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 99 is 44 (9,18,72,909, 18, 72, 90 are multiples of 99), as is the case for 22 and 33. You may output any of these values, as they are all correct.

Log in or sign up to be able to send submissions!