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

문제 문제 링크 문제 접근 math.gcd활용 ( 최대 공약수 ) 최대 공약수가 1이라면 그 두개의 수는 서로소 코드 import sys, math input = sys.stdin.readline # 서로소: 1을 제외한 나머지 공약수중 곂치는것이 없는 수 n = int(input()) a = list(map(int, input().split())) x = int(input()) result = list() for i in a: gcd = math.gcd(i, x) if gcd == 1: result.append(i) print(sum(result) / len(result))
알고리즘 문제/수학(math)
2022. 7. 28. 14:59