Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 동적계획법
- 파이썬
- 알고리즘
- issue
- cos pro 1급
- 코딩테스트
- 코테
- 백준
- Vue
- DFS와BFS
- vuejs
- C++
- android
- cos pro
- DFS
- Flutter
- django
- 동적계획법과최단거리역추적
- codingtest
- cos
- DART
- BAEKJOON
- 개발
- 안드로이드스튜디오
- Algorithm
- 코드품앗이
- 분할정복
- Python
- AndroidStudio
- 안드로이드
Archives
- Today
- Total
목록cos 물을 최대로 담고 싶어요 python (1)
Development Artist
[COS Pro 1급, Python] 5차 2번 : 물을 최대로 담고 싶어요
문제 유형 한줄 수정(디버깅) 난이도 easy Note 1. 문제 자체는 쉬웠다. 2. 하지만, 함수 구현 문제로 나올 수 있으니, 해당 for문은 알 필요가 있다. 3. area : 넓이. 가로 x 세로. 가로 = walls[j][0] - walls[i][0] , 세로 = walls[j][1] Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(walls): answer = 0 for i in range(len(walls)): for j in range(i+1, len(walls)): area = 0 if walls[i][1] > walls[j][1]: area = walls[j][1] * (walls[j][0] - ..
Algorithm/COS
2022. 2. 28. 16:47