Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38297 | yuzhengxun | 与指定数字相同的数的个数 | C++ | 通过 | 0 MS | 240 KB | 195 | 2024-01-26 14:41:46 |
#include<bits/stdc++.h> using namespace std; int main() { int a,n,m,s=0; cin>>n>>m; for(int i=1;i<=n;i++){ cin>>a; if(a==m){ s++; } } cout<<s<<" "; return 0; }