当前位置:   article > 正文

Common Divisors_you are given an array aa consisting of nn integer

you are given an array aa consisting of nn integers. you have to perform the

题目

You are given an array aa consisting of n integers.
Your task is to say the number of such positive integers x such that x divides each number from the array. In other words, you have to find the number of common divisors of all elements in the array.
For example, if the array aa will be [2,4,6,2,10], then 1 and 2 divide each number from the array (so the answer for this test is 2).

Input
The first line of the input contains one integer n (1≤n≤4⋅10^5) — the number of elements in a.
The second line of the input contains n integers a1,a2,…,an(1≤ai≤10 ^12), where ai is the i-th element of aa.

Output
Print one integer — the number of such positive integers x such that x divides each number from the given array (in other words, the answer is the number of common divisors of all elements in the array).

Examples
Input
5
1 2 3 4 5
Output
1

Input
6
6 90 12 18 30 18
Output
4

题意:就是给出n个数字,求这n个数字的公共因子有多少个

思路:其实很简单,自己想复杂了,就是用辗转相除法求出最大公因数,然后求出最大公因数的所有因子即可

代码如下:((。・∀・)ノ)

    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/745282
    推荐阅读
    相关标签
      

    闽ICP备14008679号