Skip to content

Commit 714e95a

Browse files
committed
#17 : 2579_계단 오르기
1 parent 210580b commit 714e95a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

이티준희/2579_계단 오르기.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
###########################################################################################
4242
#미리 리스트의 공간을 모두 할당 받는(?)건 낭비인가? 싶어서 다시 작성해봤지만 런타임에러 뜸
4343

44+
import sys
45+
input = sys.stdin.readline #이렇게 해도 런타임에러 발생
46+
4447
n = int(input()) #계단 개수
4548
score = [] #계단 점수 리스트 -> 계단 개수만큼만 할당
4649
for x in range(n) :

0 commit comments

Comments
 (0)