| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153462 | 6倪葭轩 | 图像相似度 | Python3 | Accepted | 56 MS | 3960 KB | 364 | 2026-05-17 13:23:21 |
m,n=list(map(int,input().split())) a=[] for i in range(m): tmp=list(map(int,input().split())) a.append(tmp) b=[] for i in range(m): tmp=list(map(int,input().split())) b.append(tmp) count = 0 for i in range(m): for j in range(n): if a[i][j]==b[i][j]: count+=1 print("{:.2f}".format(count/(m*n)*100))