Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 토이프로젝트
- 자료구조
- 파이썬
- 알고리즘
- react
- CPU 스케줄링
- 협업
- Operating System
- 백준
- Redux
- Java
- memory
- 리덕스장바구니
- 타입스크립트
- 기초100제
- 코드업
- 일상
- 정렬
- Spring
- react-redux
- OS
- web
- 공부
- error
- 스프링
- C++
- codeup
- js to ts
- 프로그래머스
- 분할메모리할당
Archives
- Today
- Total
목록2563 (1)
감자튀김 공장🍟
[백준/2563] 색종이 (with 파이썬)
✔ 문제 ✔ 풀이 n = int(input()) white = [[0 for _ in range(101)] for _ in range(101)] for _ in range(n): x, y = map(int, input().split()) for i in range(x, x+10): for j in range(y, y+10): white[i][j] = 1 ans = 0 for r in white: ans += r.count(1) print(ans) ✔ 설명 1. 흰 도화지는 가로, 세로 100 사이즈로 고정되어 있으며 색종이가 해당 범위를 넘어가지 않기 때문에 0~100까지의 이차원 배열을 생성한다. 2. 색종이의 x, y 좌표를 입력받은 후 색종이의 크기는 가로, 세로 10이기 때문에 for문을 돌면서 ..
Algorithm/BOJ
2022. 11. 6. 17:46