지나가던 개발자
[Python] 백준 21920번(서로소 평균) 문제 풀이 본문
import math
n = int(input())
A = list(map(int, input().split()))
x = int(input())
sumDivide = [0, 0]
for i in A:
if math.gcd(i, x) == 1:
sumDivide[0] += i
sumDivide[1] += 1
print(sumDivide[0]/sumDivide[1])
'PS > Python' 카테고리의 다른 글
[Python] 백준 14382번(숫자세는 양 (Large)) 문제 풀이 (0) | 2022.11.28 |
---|---|
[Python] 백준 24039번(2021은 무엇이 특별할까?) 문제 풀이 (0) | 2022.11.27 |
[Python] 백준 5939번(Race Results) 문제 풀이 (0) | 2022.11.24 |
[Python] 백준 9417번(최대 GCD) 문제 풀이 (0) | 2022.11.23 |
[Python] 백준 13241번(최소공배수) 문제 풀이 (0) | 2022.11.22 |
Comments