https://programmers.co.kr/learn/courses/30/lessons/12928
방법 1: 편한 답안
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Solution {
public int solution(int n) {
int iSum = 0;
for (int i = 1; i <= n; i++) {
if (n % i == 0) {
iSum += i;
}
}
return iSum;
}
}
Colored by Color Scripter
|
방법 2: 조금 더 생각하는 답안
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class Solution {
public int solution(int n) {
int iSum = 0;
for (int i = 1; i * i <= n; i++) {
if (n % i == 0) {
iSum += i;
// 제곱수가 아니라면 대칭되는 약수도 더하기
if (i != (n / i)) {
iSum += (n / i);
}
}
}
return iSum;
}
}
Colored by Color Scripter
|
* 제곱수 케이스에 주의
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스]연습문제 : 자릿수 더하기 (level 1) (0) | 2019.11.07 |
---|---|
[프로그래머스]연습문제 : 이상한 문자 만들기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 시저 암호 (level 1) (0) | 2019.11.06 |
[프로그래머스]연습문제 : 평균 구하기 (level 1) (0) | 2019.11.06 |
[프로그래머스]연습문제 : 짝수와 홀수 (level 1) (0) | 2019.11.06 |
댓글