| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55537 | wangchenglin | 与指定数字相同的数的个数 | Python3 | Accepted | 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)