일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 11053
- Android
- itertools
- 코틀린
- 11기
- 매일11시
- permutation
- lcm
- 앱
- 1182
- 순열
- Combination
- 뒤로가기
- 11057
- 1260
- 코테
- 11054
- Python
- 안드로이드
- 홈화면
- Kotlin
- expo
- 백준
- 괄호
- 9095
- 파이썬
- 나머지
- 최소공배수
- LCS
- 6603
Archives
- Today
- Total
목록1697 (1)
황소개발자
백준 1697 파이썬 python : 숨바꼭질 @@황소처럼 우직하게@@
화이팅! n, k = map(int, input().split()) dist = [-1 for i in range(100001)] from collections import deque def bfs(v): q = deque() q.append(v) dist[v] = 0 while q: now = q.popleft() if now + 1 = 0 and dist[now - 1] == -1: q.append(now - 1) dist[now - 1] = dist[now] + 1 if now * 2
백준 문제 풀이
2020. 3. 3. 05:17