1145 : 적어도 대부분의 배수

풀이

조아~

코드

#include <stdio.h>
int i,j,c,a[5];
int main() {
	for (i=0;i<5;i++)scanf("%d",&a[i]);
	for (i=1;;i++){
		for(j=0,c=0;j<5;j++)if(i%a[j]==0)c++;
		if(c>=3)return ~printf("%d",i);
	}
	return 0;
}

아무말

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

wookje.kwon's profile image

wookje.kwon

2018-03-22 10:18

Read more posts by this author