#include <string>
#include <vector>
using namespace std;
int solution(int n) {
int answer = 0;
for(int i=1; i <= n; i++){
if(n%i ==0)
answer +=i;
}
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 숫자의 표현 (0) | 2019.07.30 |
---|---|
[프로그래머스] 영어 끝말 잇기 (0) | 2019.07.24 |
[프로그래머스] 수박수박수박수박수박수? (0) | 2019.07.22 |
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2019.07.22 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2019.07.22 |