SGU 499 Max Gcd——枚举因子
#include #include #include #include using namespace std;const int maxn = 1e6 + 5;int n, a[maxn], cnt[maxn], maxv, ans;int main() { while (~scanf("%d", &n)) { memset(cnt, 0, sizeof(cnt)); ans = 1; for (int i = 1; i <= n; i++) { scanf("%d", &a[i]); cnt[a[i]]++; maxv = max(maxv, a[i]); } for (int i = maxv; i >= 1; i--) { int temp = 0; for (int j = i; j <= maxv; j += i) { if (cnt[j]) temp += cnt[j]; if (temp > 1) { printf("%d\n", i); i = 0; break; } } } } return 0;}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
暂时没有评论,来抢沙发吧~