1 条题解

  • 1
    @ 2025-2-15 10:29:29
    #include <iostream>
    #include <vector>
    using namespace std;
    vector<int> vec;
    int main(){
       int n , tmp;
       cin >> n;
       while (n--) {
          cin >> tmp;
          vec.push_back(tmp);
       }
       vec.push_back(vec[0]);
       vec.erase(vec.begin());
       for(int x : vec){
          cout << x << " ";
       }
    
    
    
    
       return 0;
    }
    
    • 1

    信息

    ID
    394
    时间
    1000ms
    内存
    64MiB
    难度
    4
    标签
    递交数
    33
    已通过
    18
    上传者