Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104454 赵乘浩 求点积 Python3 Accepted 39 MS 3764 KB 146 2025-01-05 09:38:21

Tests(10/10):


Code:

n = int(input()) a = list(map(int,input().split())) b = list(map(int,input().split())) s = 0 for i in range(n): s = s+a[i]*b[i] print(s)