728x90
반응형
문제
코드
#include <string>
#include <iostream>
#include <vector>
using namespace std;
int solution(vector<int> num_list) {
int answer = 0;
for (int n : num_list)
{
int temp = n;
while (temp != 1)
{
if (temp & 1)
{
temp = (temp - 1) / 2;
}
else
{
temp /= 2;
}
answer++;
}
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 원하는 문자열 찾기 (0) | 2023.11.15 |
---|---|
[프로그래머스/C++] Lv.0 길이에 따른 연산 (0) | 2023.11.15 |
[프로그래머스/C++] Lv.0 조건에 맞게 수열 반환하기 1 (0) | 2023.11.15 |
[프로그래머스/C++] Lv.0 수열과 구간 쿼리 1 (0) | 2023.11.14 |
[프로그래머스/C++] Lv.0 n보다 커질 때까지 더하기 (0) | 2023.11.13 |