| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 2821 | 顾郁铭 | 与指定数字相同的数的个数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 217 | 2019-12-07 14:26:31 |
#include <iostream> using namespace std; int main(){ int a[101],i,n,b; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; cin>>b; for(int i=1;i<=n;i++){ if(a[i]==b) cout<<a[i]; } } return 0; }