Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109682 丁俊杰 求点积 Python3 Accepted 38 MS 3764 KB 164 2025-02-10 14:37:50

Tests(10/10):


Code:

n=int(input()) #代表n维向量 a=list(map(int,input().split())) b=list(map(int,input().split())) res=0 for i in range(n): res+=a[i]*b[i] print(res)