S10 Day 0: Weighted Mean

Jmnote (토론 | 기여)님의 2018년 8월 3일 (금) 19:41 판

1 개요

Day 0: Weighted Mean

2 같이 보기

3 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

4 R

5 R

a <- scan(file="stdin")
n <- a[1]
x <- a[1:n+1]
w <- a[n+1:n+1]
cat(sprintf("%.1f", weighted.mean(x,w) ))
a <- scan("stdin")
n <- a[1]
x <- a[2:(n+1)]
w <- a[(n+2):(2*n+1)]
cat( format(sum(x*w)/sum(w),nsmall=1) )
lines <- readLines(file('stdin', open='r'))
x <- as.numeric(unlist(strsplit(lines[2],split=" ")))
w <- as.numeric(unlist(strsplit(lines[3],split=" ")))
cat( format(sum(x*w)/sum(w),nsmall=1) )
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}