일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 6603
- 11053
- 11057
- 11054
- Kotlin
- 홈화면
- expo
- 안드로이드
- 최소공배수
- Android
- 코틀린
- itertools
- LCS
- lcm
- 순열
- permutation
- 매일11시
- Python
- 나머지
- 1260
- Combination
- 뒤로가기
- 9095
- 파이썬
- 1182
- 코테
- 11기
- 백준
- 괄호
- 앱
Archives
- Today
- Total
목록6087 (1)
황소개발자
백준 6087 파이썬 python : 레이저통신 @@황소처럼 우직하게@@ 백준님은 대단하신분이다..
정말 대단하신 분이다.. import sys input = sys.stdin.readline w, h = map(int, input().split()) mat = [] for i in range(h): mat.append(input()) mirror = [[] for _ in range(h)] C = [] for i in range(h): for j in range(w): if mat[i][j] == 'C': C.append([i, j]) if mat[i][j] != '*': mirror[i].append(-1) else: mirror[i].append(mat[i][j]) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] def bfs(start_y, start_x): q = [] q...
백준 문제 풀이
2020. 4. 18. 17:15