728x90
https://school.programmers.co.kr/learn/courses/30/lessons/77884
소스코드
using System;
public class Solution
{
public int solution(int left, int right)
{
int answer = 0;
for (int i = left; i <= right; i++)
{
int 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;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 음양 더하기 C# (select((s,idx))) (0) | 2023.06.15 |
---|---|
[프로그래머스]Lv.1 로또의 최고 순위와 최저 순위 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 숫자 문자열과 영단어 C# (0) | 2023.06.15 |
[프로그래머스]Lv.1 없는 숫자 더하기 C#(Except, Sum) (0) | 2023.06.15 |
[프로그래머스]Lv.1 최소직사각형 C# (0) | 2023.06.15 |