约数的个数(如何不超时)

题目描述

输入n个整数,依次输出每个数的约数的个数

输入描述:

输入的第一行为N,即数组的个数(N<=1000)
接下来的1行包括N个整数,其中每个数的范围为(1<=Num<=1000000000)
当N=0时输入结束。

输出描述:

可能有多组输入数据,对于每组输入数据,
输出N行,其中每一行对应上面的一个数的约数的个数。

示例1

输入

5
1 3 4 6 12

输出

1
2
3
4
6

timelimit的代码

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;

//约数:又称因数,    整除 ·没有余数 
//素数:又称质数,    除了1和自身,不能被中间内容除干净,如果有数 除干净了,他就不是素数 

int getResult(int n) {
	int cnt = 0;
	for (int i = 1; i <= n; i ++) {
		if (n % i == 0) {
			cnt ++;
		}
	}
	
	return cnt; 
}

int main() {
	int n;
	int t;
	while(cin >> n) {
		for (int i = 1; i <= n; i ++) {
			cin >> t;
			cout << getResult(t) <<endl;
		}
	}

	return 0;

}

AC的代码

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;

//约数:又称因数,    整除 ·没有余数
//素数:又称质数,    除了1和自身,不能被中间内容除干净,如果有数 除干净了,他就不是素数

int getResult(int n) {
	int cnt = 0;

	int bound = sqrt(n);
	for (int i = 1; i <= bound; i ++) {
		if (n % i == 0) {
			if (i * i == n) {
				cnt += 1;
			} else {
				cnt += 2;
			}
		}
	}

	return cnt;
}



int main() {
	int n;
	int t;
	while(cin >> n) {
		for (int i = 1; i <= n; i ++) {
			cin >> t;
			cout << getResult(t) <<endl;
		}
	}

	return 0;

}
发布了86 篇原创文章 · 获赞 0 · 访问量 3661

猜你喜欢

转载自blog.csdn.net/bijingrui/article/details/104421241