일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- 매일11시
- 순열
- lcm
- 11053
- 파이썬
- itertools
- 최소공배수
- Combination
- Android
- LCS
- 11057
- 뒤로가기
- 11기
- 홈화면
- 1260
- Kotlin
- 백준
- 1182
- 9095
- 코틀린
- 괄호
- expo
- permutation
- Python
- 11054
- 앱
- 코테
Archives
- Today
- Total
목록15686 (1)
황소개발자
백준 15686 파이썬 python : 치킨 배달 @@황소처럼 우직하게@@ 치킨 먹고싶어
2 의 13승은 작은 숫자 베이베 import sys import itertools input = sys.stdin.readline n, m = map(int, input().split()) mat = [] for i in range(n): mat.append(list(map(int, input().split()))) homes = [] chickens = [] for i in range(n): for j in range(n): if mat[i][j] == 1: homes.append([i, j]) elif mat[i][j] == 2: chickens.append([i, j]) combi = [i for i in range(len(chickens))] combi = list(itertools.combin..
백준 문제 풀이
2020. 4. 23. 14:03