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
- 파이썬
- 백준
- 백준 16719
- 백준 파이썬
- Spring
- spring security
- java 기술면접
- 백준 17626
- spring oauth
- 백준 16235
- Kotlin
- JVM
- Spring Boot
- JPA
- 웹어플리케이션 서버
- 프로래머스
- java
- 백준 15685
- with recursive
- re.split
- spring cloud
- 백준 16236
- 프로그래머스
- 백준 19238
- springboot
- 백준 17779
- sql 기술면접
- MySQL
- Coroutine
- MSA
Archives
- Today
- Total
목록백준7569 (1)
시작이 반
[백준] 7569번(python 파이썬)
7576번 2차원 토마토 문제와 같은 문제이다. 3차원 배열은 [z][x][y]인 것을 기억하자 또한 3차원 배열에서 Max값을 얻기 위해 쉽게 얻는 방법이 있는지 확인할려고 검색을 해본결과 2차원 배열에서 max(map(max, graph)) 이런식으로 하면 나온다고 하여 응용을 해서 max(map(max, max(graph)))를 사용하였는데 틀렸다고 나왔다. map사용법을 아직 잘모름... 3중포문을 사용하여 Max값을 구함 from collections import deque import sys input = sys.stdin.readline col, row, h = map(int, input().split()) graph = [[list(map(int, input().split())) for _..
알고리즘/백준
2021. 1. 7. 14:58