Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Math
- graph
- BOJ
- C
- 정수론
- 따라하며 배우는 C언어
- sorting
- Python
- greedy
- BFS
- dfs
- C언어
- web
- 생활코딩
- 인프런
- BASIC
- Cleancode
- php
- 백준
- JavaScript
- udemy
- 종만북
- Algorithm
- 따라하면서 배우는 C언어
- DP
- 따배씨
- String
- programmers
- Algospot
- server
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 9613 / GCD 합 / Python 파이썬 본문
[BOJ] 9613 / GCD 합 / Python 파이썬
https://www.acmicpc.net/problem/9613
풀이
N 개 정수의 정수쌍 조합을 구하고, 그 쌍들의 최대 공약수 합을 구하는 문제이다.
combinations 과 gcd method 를 이용해서 구하였다.
import sys
from itertools import combinations
import math
T = int(sys.stdin.readline())
for _ in range(T):
nums = list(map(int, sys.stdin.readline().split()))
combi = list(combinations(nums[1:], 2))
res = 0
for com in combi:
res += math.gcd(com[0], com[1])
print(res)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1373 / 2진수 8진수 / Python 파이썬 (0) | 2021.06.01 |
---|---|
[BOJ] 11005 / 진법 변환 2 / Python 파이썬 (0) | 2021.05.30 |
[BOJ] 1850 / 최대공약수 / Python 파이썬 (0) | 2021.05.30 |
[BOJ] 2609 / 최대공약수와 최소공배수 / Python 파이썬 (0) | 2021.05.27 |
[BOJ] 10430 / 나머지 / Python 파이썬 (0) | 2021.05.27 |
Comments