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
- Bfs와DFS
- 볼륨 만들기
- 백준2251
- 완전탐색
- BFS
- 완탐
- 에라토스테네스의채
- 알고리즘개념
- 정보처리기사
- 순열
- 코테
- 삼성역테
- 백준
- 중복조합
- 중복순열
- 23288
- 백준13458
- java
- 자바
- N과M
- 주사위굴리기2
- 백준15652
- 자바 코테
- 파티션 크기 조정
- 재귀함수
- 코테준비
- 알고리즘
- 정올 1620
- D드라이브생성
- 전화번호속의암호
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 9613번 GCD합 본문
728x90
풀이
숫자 하나는 1,000,000을 넘지 않으니 int형으로 선언해도 된다.
하지만 GCD의 합은 int형의 범위를 넘어설 수 있으니 long형으로 선언해야 한다!!!
자료형에 제발 주의할 것
public class BOJ_9613 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int t = Integer.parseInt(in.readLine());
for(int i=0;i<t;i++) {
StringTokenizer st = new StringTokenizer(in.readLine()," ");
int total = Integer.parseInt(st.nextToken());
int arr[] = new int[total];
long sum = 0;
for(int x =0;x<total;x++) {
arr[x] = Integer.parseInt(st.nextToken());
}
for(int j=0;j<total-1;j++) {
for(int k=j+1;k<total;k++) {
int a = arr[j];
int b = arr[k];
if(a<b) {
int tmp = a;
a = b;
b = tmp;
}
sum += gcd(a,b);
}
}
System.out.println(sum);
}
}
static int gcd(int a, int b) {
if(a%b == 0) return b;
return gcd(b,a%b);
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 1476번 날짜 계산 (0) | 2021.02.16 |
---|---|
[문제] 백준 10972번 다음 순열 (0) | 2021.02.16 |
[문제] 백준 14503번 로봇 청소기 (0) | 2021.02.15 |
[문제] 백준 1967번 트리의 지름 (0) | 2021.02.15 |
[문제] 백준 2961번 도영이가 만든 맛있는 음식 (0) | 2021.02.15 |
Comments