Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58537 | GT3RS 飞起来@阚 | 与指定数字相同的数的个数 | C++ | 通过 | 0 MS | 248 KB | 212 | 2024-12-12 16:53:51 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; int a[n],result=0; for(int i=0;i<n;i++){ cin>>a[i]; if(a[i]==m){ result+=1; } } cout<<result; return 0; }