일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- 홈화면
- Combination
- 괄호
- 앱
- 1182
- permutation
- itertools
- Python
- 최소공배수
- Kotlin
- 1260
- 11057
- 뒤로가기
- 11054
- 코틀린
- 11053
- 11기
- 안드로이드
- expo
- Android
- 6603
- lcm
- 코테
- 9095
- LCS
- 나머지
- 파이썬
- 순열
- 매일11시
Archives
- Today
- Total
목록16924 (1)
황소개발자
백준 16924 파이썬 python : 십자가 찾기 @@황소처럼 우직하게@@ 코테에 잘나옴 은근
채점하는데 오래걸려서 유튭보고 왓넹 import sys input = sys.stdin.readline h, w = map(int, input().split()) check = [[0 for i in range(w)] for j in range(h)] mat = [] ans = [] # x, y, s dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] def checks(y, x): for s in range(1, w): flag = True for i in range(4): ny = y + dy[i] * s nx = x + dx[i] * s if 0
백준 문제 풀이
2020. 4. 22. 02:19