Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153478 王一诺 求点积 Python3 Accepted 45 MS 3780 KB 146 2026-05-17 16:23:18

Tests(10/10):


Code:

c=[] input() a=list(map(int,input().split())) b=list(map(int,input().split())) for i in range(len(a)): c.append(a[i]*b[i]) print(sum(c))