1 条题解

  • 0
    @ 2024-10-19 15:54:35
    #include<iostream>
    using namespace std;
    int a[1000001];
    int main(){
        ios::sync_with_stdio(0);
        cin.tie(0); cout.tie(0);
        int n, q;
        cin >> n;
        for(int i = 1; i <= n; i++)cin >> a[i];
        cin >> q;
        for(int i = 1; i <= n; i++){
            if(a[i] != q)cout << a[i] << ' ';
        }
        return 0;
    }
    
  • 1

信息

ID
2747
难度
4
分类
(无)
标签
递交数
74
已通过
30
通过率
41%
上传者