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 |
Tags
- Lv. 2
- 프로그래머스
- Lv. 0
- 파이썬
- group by
- Python
- Lv. 1
- SQL
- Dynamic Programming
- 깊이 우선 탐색
- join
- level 3
- 백준
- LEVEL 2
- Baekjoon
- Lv. 3
- 자바스크립트
- 소프티어
- programmers
- SQL 고득점 KIT
- softeer
- Java
- javascript
- select
- bfs
- 오블완
- DP
- 티스토리챌린지
- dfs
- 너비 우선 탐색
Archives
- Today
- Total
목록동계테스트시점예측 (1)
몸과 마음이 건전한 SW 개발자
Softeer level3 동계 테스트 시점 예측 Python
문제 링크 : https://softeer.ai/practice/info.do?idx=1&eid=411 Softeer 연습문제를 담을 Set을 선택해주세요. 취소 확인 softeer.ai 정답 코드 import sys input = sys.stdin.readline from collections import deque N, M = map(int, input().split()) ices = [] meltIces = [] iceBergMap = [] for r in range(N): tmpIce = list(map(int, input().split())) iceBergMap.append(tmpIce) for c in range(M): if tmpIce[c]: ices.append((r, c)) dr = [-..
알고리즘
2023. 8. 27. 15:40