반응형
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
- 자료구조
- algorithms
- 모던자바스크립트
- 알고리즘
- 큐
- dfs
- Python
- frontend
- React #Web #프런트엔드
- 로보어드바이저
- pyhton
- 자문형
- BAEKJOON
- algoritms
- BFS
- 혁신금융서비스
- 스택
- 자바스크립트
- 신한투자증권
- programmers
- Ai
- RPA
- JS
- SSAFY
- 백준
- 일임형
- 프로그래머스
- Algorithm
- 파이썬
- JavaScript
Archives
- Today
- Total
목록SWEA (1)
Step by Step
SWEA 1206.View (python)
https://swexpertacademy.com/main/solvingProblem/solvingProblem.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 본 문제의 저작권은 SW Expert 아카데미에 있습니다. T = 10 # 10번의 테스트 케이스를 반복 for TC in range(1, T+1): # 건물 개수 (가로 길이) 저장 TC_length = int(input()) # 건물의 높이 리스트 저장 buildingHeight = list(map(int, input().split())) # 조망권이 확보된 세대 수를 저장하는 result 변수 초기화 result = 0 # 맨 왼쪽 두 칸, ..
Algorithms
2023. 11. 19. 02:34