Run ID:116470
提交时间:2025-04-12 08:56:41
while True: n = int(input()) if n==0: #结束标志 break a = input().split() #a is a list 100 20 46 78 ---> ['100','20','46','78'] str x = input() #78 x = '78' str print(a.count(x))