A1579.[COCI-2016_2017-contest6]#4 Sirni

普及+/提高

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Little Daniel has a bag of candy and N cards.
Each of the cards has a positive integer Pi written on it. While Daniel was eating his candy, he thought of a fun game. He can tie together two cards with labels a and b, and then he must eat min(Pa % Pb, Pb % Pa) of candy, where operation x % y denotes the remainder when dividing x with y.
He wants to tie together pairs of cards in a way that, when he lifts one of them, all the rest are also lifted up. Each card can be directly connected with a tie to any number of other cards. As Daniel is watching his figure, he doesn’t want to consume too much, so he is asking you to calculate the minimal number of candy he must eat so all cards are connected.

输入格式

The first line of input contains the positive integer N. (1 ≤ N ≤ 10^5)
Each of the following N lines contains a positive integer Pi(1 ≤ Pi ≤ 10^7).

输出格式

The first and only line of output must contain the required value from the task.

输入输出样例

  • 输入#1

    4 
    2 
    6 
    3 
    11

    输出#1

    1
  • 输入#2

    4 
    1 
    2 
    3 
    4

    输出#2

    0
  • 输入#3

    3 
    4 
    9 
    15

    输出#3

    4

说明/提示

In test cases worth 30% of total points, it will hold N ≤ 10^3.
In test cases worth 40% of total points, it will hold Pi ≤ 10^6.
In test cases worth 70% of total points, at least one of the two conditions will hold.

首页