call될때마다 0으로 바꾸는 방식 5개 0이면 빙고 1줄 import sys input = sys.stdin.readline def check(x,y): global cnt if not row_check[x] and not sum(bingo[x]): row_check[x] = True cnt += 1 if not col_check[y]: for i in range(5): if bingo[i][y]: break else: col_check[y] = True cnt += 1 if x==y and not diagonal_check[0]: for i in range(5): if bingo[i][i]: break else: diagonal_check[0] = True cnt += 1 if x+y==4 and n..