题解 | #记票统计#
记票统计
https://www.nowcoder.com/practice/3350d379a5d44054b219de7af6708894
n = int(input())
candidate=input().split()
num = int(input())
votes = input().split()
res = dict()
for x in votes:
    if x in candidate:
        res[x] = res.get(x,0)+1
    else:
        res['Invalid'] = res.get('Invalid',0)+1
for x in candidate:
    print(x,":",res.get(x,0))
print('Invalid',":",res.get('Invalid',0))
 查看11道真题和解析
查看11道真题和解析