일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 11054
- 11057
- 홈화면
- 파이썬
- 최소공배수
- 안드로이드
- 나머지
- 매일11시
- 순열
- itertools
- 앱
- 1260
- Kotlin
- 11053
- 백준
- Python
- 9095
- 11기
- expo
- 코틀린
- 괄호
- lcm
- LCS
- permutation
- 1182
- Combination
- 뒤로가기
- Android
- 코테
Archives
- Today
- Total
목록14889 (1)
황소개발자
백준 14889 파이썬 python : 스타트와 링크 @@황소처럼 우직하게@@
import sys input = sys.stdin.readline n = int(input()) mat = [] for i in range(n): mat.append(list(map(int, input().strip().split()))) import itertools gab = 999999999 team = [i for i in range(n)] tt = list(itertools.combinations(team, n // 2)) for team1 in tt: team2 = [x for x in team if x not in team1] team1_score = 0 team2_score = 0 for x, y in list(itertools.combinations(team1, 2)): team1_sc..
백준 문제 풀이
2020. 2. 27. 00:34