프로그래머스(Level 1) - 🤖 약수의 개수와 덧셈

Gammi·2023년 3월 28일
0

프로그래머스

목록 보기
53/69
post-thumbnail

✔ 문제






✔ 해결


class Solution {
  public int solution(int left, int right) {
    int answer = 0, count = 0;
    
    for(int i = left; i <= right; i++) {
      count = 0; // 카운트 변수 초기화
      
      for(int j = 1; j <= i; j++) {
	    if(i % j == 0) { // 약수 찾기
          count++;
        }
      }
      
      if(count % 2 == 0) {
        answer += i;
      }else {
        answer -= i;
      }
    }
    
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글