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
- 협업
- Spring
- react-redux
- 리덕스장바구니
- 프로그래머스
- Operating System
- 분할메모리할당
- CPU 스케줄링
- 자료구조
- 일상
- error
- 기초100제
- 공부
- js to ts
- 코드업
- 정렬
- 토이프로젝트
- Java
- react
- 파이썬
- 타입스크립트
- C++
- OS
- 알고리즘
- 스프링
- Redux
- codeup
- memory
- 백준
- web
Archives
- Today
- Total
목록2477 (1)
감자튀김 공장🍟
[백준/2477] 참외밭 (with 파이썬)
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline k = int(input()) length, small = [], [] x, y = [], [] for i in range(6): w, l = map(int, input().split()) length.append([w, l]) if length[i][0] == 1 or length[i][0] == 2: # 가로 x.append(length[i][1]) if length[i][0] == 3 or length[i][0] == 4: #세로 y.append(length[i][1]) for i in range(6): # 작은 사각형의 변 구하기 if length[i][0] == length[(i+2)%6][0]: small.a..
Algorithm/BOJ
2022. 12. 10. 21:54