"S10 Day 0: Weighted Mean"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
==개요==
* https://www.hackerrank.com/challenges/s10-weighted-mean/problem
==Python==
==Python==
<source lang='python'>
<source lang='python'>

2018년 7월 28일 (토) 19:30 판

1 개요

2 Python

N = int(input())
X = list(map(int, input().split()))
W = list(map(int, input().split()))
sum_X = sum([a*b for a,b in zip(X,W)])
print(round((sum_X/sum(W)),1))
# 32.0
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}