Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬
- 금융문자분석경진대회
- Baekjoon
- 백준
- programmers
- 편스토랑
- 자연어처리
- 우분투
- PYTHON
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- 프로그래머스 파이썬
- Kaggle
- 프로그래머스
- Git
- leetcode
- ubuntu
- AI 경진대회
- gs25
- dacon
- 더현대서울 맛집
- ChatGPT
- 편스토랑 우승상품
- 데이콘
- SW Expert Academy
- 맥북
- hackerrank
- github
- Docker
- 코로나19
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 완전탐색 : 카펫 (Python) 본문
728x90
반응형
1일 1문제 77일차!
오늘의 문제는 프로그래머스의 카펫입니다.
Solution
def solution(brown, red):
answer = []
for red_height in range(1, int(red**0.5) + 1):
if red % red_height == 0:
red_width = red // red_height
if (2*red_width) + (2*red_height) + 4 == brown:
answer = [red_width + 2, red_height + 2]
break
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1463번 : 1로 만들기 (Python) (0) | 2020.04.25 |
---|---|
[BaekJoon] 11722번 : 가장 긴 감소하는 부분 수열 (Python) (0) | 2020.04.24 |
[BaekJoon] 2193번 : 이친수 (Python) (0) | 2020.04.22 |
[BaekJoon] 2011번 : 암호코드 (Python) (0) | 2020.04.22 |
[Programmers] 스택/큐 : 쇠막대기 (Python) (0) | 2020.04.20 |
Comments