| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134239 | 赵乘浩 | 求点积 | Python3 | Wrong Answer | 47 MS | 3768 KB | 133 | 2025-10-26 09:53:56 |
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[n]*b[n] print(s)
------Input------
7 6 57 59 87 37 85 85 24 51 86 80 70 52 52
------Answer-----
26515
------Your output-----