Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134240 赵乘浩 求点积 Python3 Accepted 53 MS 3764 KB 146 2025-10-26 09:54:42

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)