Home [Python] 코드업 6095 : 바둑판에 흰 돌 놓기
Post
Cancel

[Python] 코드업 6095 : 바둑판에 흰 돌 놓기

Problem

https://codeup.kr/problem.php?id=6095

Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
n = int(input())
white_coord = []

for i in range(n):
    white_coord.append(tuple(map(int,input().split())))

for i in range(1,20):
    for j in range(1,20):
        if (i, j) in white_coord:
            print('1', end = ' ')
        else:
            print('0', end = ' ')
    print()

Memo

위 문제를 풀기 위해 리스트 안에 튜플 형태의 좌표를 저장하는 방식을 사용했다. 그 후 for문을 돌며 각 좌표가 리스트에 포함되어 있는지의 여부를 체크한 후 결과를 출력하였다.

This post is licensed under CC BY 4.0 by the author.

[Python] 코드업 6092 : 이상한 출석 번호 부르기1

TIL 220209