"프로그래머스 136798 기사단원의 무기"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=1|페이지=1|분류=연습문제}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> #include <cmath> using namespace s...)
 
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=1|페이지=1|분류=연습문제}}
{{프로그래머스|레벨=1|페이지=2|분류=연습문제}}
 
==같이 보기==
* [[함수 countDivisors()]]


==C++==
==C++==

2023년 11월 27일 (월) 20:19 기준 최신판

1 개요[ | ]

프로그래머스 136798 기사단원의 무기

2 같이 보기[ | ]

3 C++[ | ]

#include <string>
#include <vector>
#include <cmath>
using namespace std;

int countDivisors(int n) {
    int cnt = 0;
    for (int i = 1; i <= sqrt(n); i++) {
        if (n % i != 0) continue;
        if (n / i == i) cnt++;
        else cnt += 2;
    }
    return cnt;
}

int solution(int number, int limit, int power) {
    int answer = 0;
    for(int i=1; i<=number; i++) {
        int cntPower = countDivisors(i);
        answer += (cntPower > limit) ? power : cntPower;
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}