일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 괄호
- 백준
- 코틀린
- Kotlin
- lcm
- 매일11시
- Android
- 뒤로가기
- 6603
- 안드로이드
- 11057
- 11기
- 1182
- 순열
- expo
- LCS
- 11053
- 나머지
- 1260
- 9095
- 11054
- 코테
- 앱
- 홈화면
- permutation
- 파이썬
- itertools
- 최소공배수
- Python
- Combination
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