다 세줬다. 뭔가 개선 가능할 것 같기도 하다.? 근데 모르겠다 import sys sys.stdin = open('input.txt') # 각 행에 몇칸짜리 자리가 있는지 count 해 cells 에 저장합니다. def count_row(n, target, puzzle): sum_seat = 0 for row in range(n): cnt = 0 cells = [] for column in range(n): if puzzle[row][column]: cnt += 1 else: if cnt: cells.append(cnt) cnt = 0 cells.append(cnt) sum_seat += cells.count(target) # 원하는 자리가 있다면 세줍니다. return sum_seat # 글자가 들어..