1 条题解
-
0Infinity_ LV 8 @ 2024-10-19 15:27:20
#include<iostream> using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, x, q; cin >> n >> x; while(n--){ cin >> q; if(q != x)cout << q << ' '; } return 0; }
- 1
信息
- ID
- 2741
- 难度
- 4
- 分类
- (无)
- 标签
- 递交数
- 71
- 已通过
- 28
- 通过率
- 39%
- 上传者