1 条题解

  • 0
    @ 2024-10-19 15:11:38
    #include<iostream>
    using namespace std;
    long a[1000000];
    int main(){
        ios::sync_with_stdio(0);
        cin.tie(0); cout.tie(0);
        int n, k, cnt = 0;
        cin >> n;
        for(int i = 1; i <= n; i++)cin >> a[i];
        cin >> k;
        for(int i = 1; i <= n; i++){
            if(a[i] == k)cnt++;
        }
        cout << cnt;
        return 0;
    }
    
  • 1

信息

ID
2745
难度
3
分类
(无)
标签
递交数
56
已通过
30
通过率
54%
上传者