Skip to content

Commit

Permalink
#17 : 2579_계단 오르기
Browse files Browse the repository at this point in the history
  • Loading branch information
devCharlotte committed May 10, 2023
1 parent 210580b commit 714e95a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 이티준희/2579_계단 오르기.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@
###########################################################################################
#미리 리스트의 공간을 모두 할당 받는(?)건 낭비인가? 싶어서 다시 작성해봤지만 런타임에러 뜸

import sys
input = sys.stdin.readline #이렇게 해도 런타임에러 발생

n = int(input()) #계단 개수
score = [] #계단 점수 리스트 -> 계단 개수만큼만 할당
for x in range(n) :
Expand Down

0 comments on commit 714e95a

Please sign in to comment.