Bash has set out on a journey to become the greatest Pokemon master. To get his first Pokemon, he went to Professor Zulu's Lab. Since Bash is Professor Zulu's favourite student, Zulu allows him to take as many Pokemon from his lab as he pleases.

But Zulu warns him that a group of k > 1 Pokemon with strengths {s1, s2, s3, ..., sk} tend to fight among each other if gcd(s1, s2, s3, ..., sk) = 1 (see notes for gcd definition).

Bash, being smart, does not want his Pokemon to fight among each other. However, he also wants to maximize the number of Pokemon he takes from the lab. Can you help Bash find out the maximum number of Pokemon he can take?

Note: A Pokemon cannot fight with itself.

Input

The input consists of two lines.

The first line contains an integer n (1 ≤ n ≤ 105), the number of Pokemon in the lab.

The next line contains n space separated integers, where the i-th of them denotes si (1 ≤ si ≤ 105), the strength of the i-th Pokemon.

Output

Print single integer — the maximum number of Pokemons Bash can take.

Example

Input
3
2 3 4
Output
2
Input
5
2 3 4 6 7
Output3

题意:
给你一组数,求出里面最大公约数不为1的最多数量。

这道题刚开始最直观思路就是两个for循环,直接查找对于每一个数都求一下。当然这肯定超时了,
后来上网搜了一下,暴力枚举就OK了,思路都差不多,但是算法改进一下,对每个输入的数字求出因子,然后对因子的数量加1,这样只用一个for循环就OK了。

具体代码如下:
#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
const int INF = ;
int s[INF] = { };
int main()
{
int n;
cin >> n;
int m;
for (int i = ; i < n; i++)
{
scanf("%d", &m);
int j = ;
for (j = ; j * j < m; j++)//从1开始是对每个数都让自己这个数量从0变为1
{
if (m % j == )
{
s[j]++;
s[m / j]++;//因子++
}
}
if (j * j == m)
{
s[j]++;
}
}
int ans = ;
for (int i = ; i < INF; i++)
{
ans = max(ans, s[i]);
}
cout << ans << endl;
return ;
}

最新文章

  1. CSS3 @keyframes 动画
  2. jquery select操作大全
  3. 安装过程中出现PKG_CONFIG_PATH的问题解决方法
  4. [HIHO1107]Shortest Proper Prefix(trie)
  5. Linux-VLAN
  6. RPC介绍
  7. 重新开始吧(ADB+AndroidManifest.xml)
  8. Collection和Collections的区别
  9. asp.net:用类来后台绑定数据源
  10. fastjson的坑 com.alibaba.fastjson.JSONObject cannot be cast to xxx
  11. 流形(Manifold)初步【转】
  12. Codeforces 435B. Pasha Maximizes
  13. uniq 命令详解
  14. 用Vue.js开发微信小程序:开源框架mpvue解析
  15. the python challenge闯关记录(9-16)
  16. Queue 队列的使用
  17. Confluence 6 色彩选择器展开的页面
  18. mvn install package区别
  19. android-基础编程之开篇
  20. 关于使用react的思考

热门文章

  1. Android, BaseAdapter 处理大数据量时的优化
  2. Connecting Universities
  3. POJ 3984 迷宫问题 记录路径的广搜
  4. jquery奇怪的问题
  5. HDU 1176 免费馅饼(数塔dp)
  6. cmd 3389
  7. 我收藏的Blog
  8. Vmware Tools is currently being installed on your system(转)
  9. Zipf’s Law
  10. MYSQL管理----数据库删除恢复