题解 | #记票统计#

记票统计

https://www.nowcoder.com/practice/3350d379a5d44054b219de7af6708894

n = int(input()) # 候选的人数  4
ls = input().split()    #候选人的名字 A B C D
m = int(input())  # 投票的人数  8
tp = input().split()  # 票数  # A D E CF A GG A B
c = 0

for i in ls:
     c += tp.count(i) 
     print(i + ' : ' + str(tp.count(i)))   # 注意 str(tp.count(i))

print('Invalid : ' + str(m - c))

全部评论

相关推荐

点赞 评论 收藏
分享
10-09 09:39
门头沟学院 C++
HHHHaos:这也太虚了,工资就一半是真的
点赞 评论 收藏
分享
11-28 17:48
中山大学 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务