Skip to content

Commit 17a2cca

Browse files
committed
[level 2] Title: 점프와 순간 이동, Time: 0.01 ms, Memory: 9.13 MB -BaekjoonHub
1 parent b3a5153 commit 17a2cca

2 files changed

Lines changed: 7 additions & 10 deletions

File tree

프로그래머스/2/12980. 점프와 순간 이동/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### 성능 요약
66

7-
메모리: 9.09 MB, 시간: 0.02 ms
7+
메모리: 9.13 MB, 시간: 0.01 ms
88

99
### 구분
1010

@@ -16,7 +16,7 @@
1616

1717
### 제출 일자
1818

19-
2026년 01월 05일 15:22:53
19+
2026년 02월 05일 21:18:26
2020

2121
### 문제 설명
2222

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
def solution(n):
2-
ans = 0
3-
while n > 0:
4-
if n % 2 == 0:
5-
n /= 2
6-
else:
7-
ans += 1
8-
n -= 1
9-
return ans
2+
answer = 1
3+
while n > 1:
4+
answer += n % 2
5+
n = n // 2
6+
return answer

0 commit comments

Comments
 (0)