반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 정수론
- 연결리스트 정렬
- 조합론
- 브루트포스 알고리즘
- 자료 구조
- 재귀
- 다이나믹 프로그래밍
- 스택
- Queue
- 문자열
- LeetCode Remove Duplicates from Sorted List in c
- 큐
- 프로그래머스
- 사칙연산
- 수학
- KMP알고리즘
- 구현
- 정렬
- 시뮬레이션
- LeetCode 83 c언어
- LeetCode 83번
- 유클리드 호제법
- 연결리스트 중복제거
- 문자열제곱
- 이분 탐색
- 큰 수 연산
- 실패함수
- 임의 정밀도 / 큰 수 연산
- 별 찍기
- 해시를 사용한 집합과 맵
Archives
- Today
- Total
hahn
[백준 - JAVA] GCD 합 본문
728x90
반응형
http://boj.kr/68677a80d1384df2a08a6a8b4e4f41b3
더보기
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
반응형
'코딩테스트 연습 > 백준(JAVA)' 카테고리의 다른 글
[백준 - JAVA] 최소공배수 (0) | 2021.09.19 |
---|---|
[백준 - JAVA] 조합 (0) | 2021.09.19 |
[백준 - JAVA] 듣보잡 (0) | 2021.09.19 |
단계별로 풀어보기(정수론 및 조합론 - 팩토리얼 0의 개수) (0) | 2021.09.19 |
[백준 - JAVA] 나는야 포켓몬 마스터 이다솜 (0) | 2021.09.19 |