Note
[codeup] 102. 바둑판에 흰 돌 놓기 본문
728x90
d = [[0 for j in range(20)] for i in range(20)]
n = int(input())
for i in range(n):
x,y = map(int,input().split())
d[x][y] = 1
for i in range(1,20):
for j in range(1,20):
print(d[i][j], end=' ')
print()
'etc > Coding Test' 카테고리의 다른 글
[codeup] 104. 두 실수의 곱 (0) | 2022.01.03 |
---|---|
[codeup] 103. 바둑알 십자 뒤집기 (0) | 2022.01.02 |
[codeup] 101. 이상한 출석 번호 부르기3 (0) | 2021.12.31 |
[codeup] 100. 이상한 출석 번호 부르기2 (0) | 2021.12.30 |
[codeup] 99. 이상한 출석 번호 부르기1 (0) | 2021.12.29 |
Comments