hahn

[백준 - JAVA] GCD 합 본문

코딩테스트 연습/백준(JAVA)

[백준 - JAVA] GCD 합

hahn 2021. 9. 19. 11:47
728x90
반응형

9613번: GCD 합 (acmicpc.net)

 

9613번: GCD 합

첫째 줄에 테스트 케이스의 개수 t (1 ≤ t ≤ 100)이 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있다. 각 테스트 케이스는 수의 개수 n (1 < n ≤ 100)가 주어지고, 다음에는 n개의 수가 주어진

www.acmicpc.net

http://boj.kr/68677a80d1384df2a08a6a8b4e4f41b3

 

공유 소스 보기

 

www.acmicpc.net

더보기
import java.util.Scanner;

class Main{
    
    public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		
		int testCaseCount = sc.nextInt(),
			inputCount, x, y, tmp;
        
		long result;
        
		int[] intArr;
		
		for(int i = 0; i < testCaseCount; i++) {
			
			inputCount = sc.nextInt();
			result = 0;
			
			intArr = new int[inputCount];
			
			for(int j = 0; j < intArr.length; j++) {
				
				intArr[j] = sc.nextInt();
				
			}
			
			for(int j = 0; j < intArr.length; j++) {
				
				
				for(int k = j + 1; k < intArr.length; k++) {
					
					x = intArr[j];
					y = intArr[k];
					
					while(true){
						
						tmp = y;
						y = x % y;
						x = tmp;
						if(y == 0) break;
						
					}
					
					result += tmp;
					
				}
				
			}
			
			System.out.println(result);
			
		}
		
	}
    
}

 

유클리드 호제법 이용해서 풀어주면 된다.

728x90
반응형