Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 의미와 무의미의 경계에서
- 언리얼 커스텀 플러그인
- 데이터베이스 배움터
- Unreal
- C++
- 5639
- OS
- 백준 1253번
- UnrealMP
- 1253번
- command not found
- 2단계로킹
- FBX
- 1759번
- 백준
- 실습
- SQL
- hackerank
- UActor
- Linux
- oracle
- 민겸수
- 언리얼 플러그인
- 1967번
- 트랜잭션 관리
- 비재귀셰그먼트
- 오손데이터읽기
- 셰그먼트트리
- Security
- objtofbx
Archives
- Today
- Total
fatalite
프로그래머스 점프와 순간이동 본문
#include <iostream>
using namespace std;
int solution(int n)
{
int ans = 0;
while(n != 0)
{
if(n % 2 == 0)
{
n /= 2;
continue;
}
else
{
n -= 1;
ans++;
}
}
return ans;
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
프로그래머스 이모티콘 할인행사 (3) | 2024.10.13 |
---|---|
프로그래머스 우박 수열 정적분 (0) | 2024.10.09 |
프로그래머스 단어 변환 (1) | 2024.10.06 |
프로그래머스 n진수 게임 (0) | 2024.10.01 |
프로그래머스 - 괄호 변환 (0) | 2024.09.29 |