Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
55537 | wangchenglin | 与指定数字相同的数的个数 | Python3 | 通过 | 30 MS | 3664 KB | 122 | 2024-11-08 11:56:39 |
N = int(input()) sequence = list(map(int,input().split())) m = int(input()) count = sequence.count(m) print(count)