Skip to content

Commit 722b824

Browse files
committed
#14 : 1431_시리얼 번호
1 parent ceb7c24 commit 722b824

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

이티준희/1431_시리얼 번호.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,15 @@
3535

3636
#익명 함수 호출을 위한 lambda / 정렬을 위한 sort 사용 가능
3737

38-
N = int(input())
38+
import sys
39+
40+
#N = int(input())
41+
N = int((sys.stdin.readline()))
3942

4043
a = []
4144

4245
for i in range(N) :
43-
a.append(input())
46+
a.append(sys.stdin.readline())
4447

4548
def sum (x) :
4649
sum = 0

0 commit comments

Comments
 (0)