题解 | #图像相似度#

图像相似度

http://www.nowcoder.com/practice/f2952ee3bb5c48a9be6c261e29dd1092

while True:
    try:
        num=input().split(" ")
        m,n=map(int,num)
        pixel_lista=[]
        pixel_listb=[]
        same_count=0
        for i in range(m):
            pixel=input().split(" ")
            pixel_lista.append(list(map(int,pixel)))
        for i in range(m):
            pixel=input().split(" ")
            pixel_listb.append(list(map(int,pixel)))
        for i in range(m):
            for j in range(n):
                if pixel_lista[i][j]==pixel_listb[i][j]:
                    same_count+=1
        print("{:.2f}".format(same_count*100/(m*n)))
    except:
        break
全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务