Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134241 潘允晨 求点积 Python3 Accepted 59 MS 3760 KB 136 2025-10-26 09:54:55

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)