1 条题解

  • 1
    @ 2024-4-10 17:55:28

    #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; queue<char> q; for (int i = 0; i < n; i++) { char c; cin >> c; q.push(c); } while (!q.empty()) { cout << q.front(); q.push(q.front()); q.pop(); q.pop(); } return 0; } //模拟就可以了;

    信息

    ID
    102
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    34
    已通过
    25
    上传者