반응형 경우의 수2 baekjoon - python - 6768 www.acmicpc.net/problem/6768 6768번: Don’t pass me the ball! A CCC soccer game operates under slightly different soccer rules. A goal is only counted if the 4 players, in order, who touched the ball prior to the goal have jersey numbers that are in strictly increasing numeric order with the highest number being the www.acmicpc.net 이 문제는 경우의 수 문제이다. 오랜만에 수학을 풀려니 힘들어서 적어본다.. 숫자카드 조합 문제를 중고등학교 때 많이 .. 2020. 12. 19. baekjoon - python - 6603 www.acmicpc.net/problem/6603 6603번: 로또 입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스는 한 줄로 이루어져 있다. 첫 번째 수는 k (6 < k < 13)이고, 다음 k개 수는 집합 S에 포함되는 수이다. S의 원소는 오름차순으로 www.acmicpc.net # @Author YoungMinKim # baekjoon import itertools import sys while True: a = list(map(int,sys.stdin.readline().split())) if a == [0]: break event = list(itertools.combinations(a[1:], 6)) for i in event: for j in i: print(j,en.. 2020. 11. 2. 이전 1 다음 반응형