[백준] #2669 직사각형 네개의 합집합의 면적 구하기 python
2023. 5. 9. 13:23
https://www.acmicpc.net/problem/2669
📕 설명 📕
전체에 대해서 채워나가는 식으로 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
box = [[0 for _ in range(101)] for _ in range(101)]
for _ in range(4):
x1, y1, x2, y2 = map(int, input().split())
for i in range(x1, x2):
for j in range(y1, y2):
box[i][j] = 1
result = 0
for width in box:
result += sum(width)
print(result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1141 접두사 python (0) | 2023.05.11 |
---|---|
[백준] #5046 전국 대학생 프로그래밍 대회 동아리 연합 python (0) | 2023.05.10 |
[백준] #1535 안녕 python (0) | 2023.05.08 |
[백준] #1138 한 줄로 서기 python (0) | 2023.05.05 |
[백준] #1455 뒤집기 II python (0) | 2023.05.04 |