2501 : 약수 구하기

풀이

ㅎㅎ

코드

#include <stdio.h>

int main() {
	int n, k, cnt=0;

	scanf("%d %d",&n,&k);

	for(int i=1;i<=n;i++) {
		if (!(n%i)) cnt++;
		if (cnt == k) {
			printf("%d", i);
			return 0;
		}	
	}
	puts("0");

	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2017-06-07 09:38

Read more posts by this author