| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76454 | sh25_wanghy | 与指定数字相同的数的个数 | C++ | Accepted | 0 MS | 244 KB | 309 | 2025-12-19 15:03:42 |
#include <iostream> using namespace std; int main() { int N, m; cin >> N >> m; int count = 0; for (int i = 0; i < N; ++i) { int num; cin >> num; if (num == m) { count++; } } cout << count << endl; return 0; }