2 条题解

  • 2
    @ 2023-1-17 22:50:10
    #include<bits/stdc++.h>
    using namespace std;
    int a[1010],n,x,y,i,p;
    int main()
    {
    	cin >> n >> x >> y;
    	for(i = 1; i <= n; i++){
    		cin >> a[i];
    		if(a[i] == x) p = i;
    	}
    	for(i = n; i > p; i--){
    		a[i+1] = a[i];
    	}
    	a[p+1] = y;
    	n++;
    	for(i = 1; i <= n; i++) cout << a[i] << " ";
    	return 0;
    }
    
    
    
    • -1
      @ 2023-6-25 18:38:27

      最简代码 image

      • 1

      【入门】小明排队做操迟到

      信息

      ID
      217
      时间
      1000ms
      内存
      16MiB
      难度
      1
      标签
      递交数
      62
      已通过
      50
      上传者