| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134551 | 叶航帅 | 求点积 | Python3 | Wrong Answer | 53 MS | 3752 KB | 167 | 2025-10-27 21:26:23 |
n = int(input()) a = input().split() b = input().split() a = [int(x) for x in a] b = [int(x) for x in b] c = 0 for i in range(n): c = c + a[i]*b[i] print
------Input------
7 6 57 59 87 37 85 85 24 51 86 80 70 52 52
------Answer-----
26515
------Your output-----