일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- spring
- 1일1솔
- 브루투포스
- c#
- popleft
- DP
- appendleft
- C#강의
- unity
- pypy3
- Python
- 연관관계
- mvc
- Java
- 누적합
- 파이썬
- 소수찾기
- 프로그래머스
- LCM
- 우선순위큐
- deque
- 완전탐색
- BFS
- 소수판별
- 합 구하기
- JPA
- 인프런
- 그리디 알고리즘
- 백준
- python3
Archives
- Today
- Total
목록9613 (1)
jae_coding

문제 문제 링크 문제 접근. 배열 슬라이싱 사용하여 Input list 를 해결한다. itertools의 combination을 사용하여 중복을 허용하지 않는 조합을 만들어 낸다. math. gcd 사용하여 최대 공약수 도출한다. 코드 import sys, math from itertools import combinations input = sys.stdin.readline t = int(input()) for _ in range(t): input_list = list(map(int, input().split())) sum_gcd = 0 for i in combinations(input_list[1:], 2): a, b = i gcd = math.gcd(a, b) sum_gcd += gcd print(s..
알고리즘 문제/수학(math)
2022. 7. 28. 15:10