728x90
https://www.acmicpc.net/problem/2563
import sys
# 검은색(white[i][j] == 1) 갯수 새기
input = sys.stdin.readline
answer = 0
white = [[0] * 100 for _ in range(100)]
black = list()
N = int(input())
for i in range(N):
x, y = map(int, input().split(" "))
black.append([x, y])
for x1, y1 in black:
x2 = x1 + 10
y2 = y1 + 10
for i in range(x1, x2):
for j in range(y1, y2):
if white[i][j] == 0:
white[i][j] = 1
for i in range(len(white)):
answer += white[i].count(1)
print(answer)
728x90
'Study > Coding Test' 카테고리의 다른 글
[백준] 1717 - 집합의 표현 Python, C/C++ (1) | 2023.10.11 |
---|---|
[백준] 1764 - 듣보잡 Python (0) | 2023.10.11 |
[백준] 1339 - 단어 수학 Python (0) | 2023.10.11 |
[백준] 11047 - 동전 0 Python (0) | 2023.10.10 |
[백준] 14502 - 연구소 Python (0) | 2023.10.10 |