Skip to content

Commit ccacfeb

Browse files
committed
[level 2] Title: 점프와 순간 이동, Time: 0.02 ms, Memory: 9.09 MB -BaekjoonHub
1 parent 045c2fd commit ccacfeb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

프로그래머스/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-
메모리: 10.2 MB, 시간: 0.03 ms
7+
메모리: 9.09 MB, 시간: 0.02 ms
88

99
### 구분
1010

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

1717
### 제출 일자
1818

19-
2024년 08월 28일 23:03:40
19+
2026년 01월 05일 15:22:53
2020

2121
### 문제 설명
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
def solution(n):
22
ans = 0
3-
while (n > 0):
3+
while n > 0:
44
if n % 2 == 0:
55
n /= 2
66
else:

0 commit comments

Comments
 (0)