| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55803 | 该账号已封禁 | 与指定数字相同的数的个数 | C++ | Compile Error | 0 MS | 0 KB | 219 | 2024-11-08 15:35:38 |
#include<bits/stdc++.h> using namespace std; int main() { int a,n,num,s=0; cin>>a>>num; for(int i=1;i<=a;1++){ cin>>n; if (n=num){ s++; } } cout<<s; }