1 条题解

  • 0
    @ 2026-5-17 14:29:05
    #include <bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin >> n;
        string s[n+1];
        for(int i = 1; i <= n; i++) cin >> s[i];
        for(int i = n; i >= 1; i--) cout << s[i] << endl;
        return 0;
    }
    • 1

    信息

    ID
    7799
    时间
    2000ms
    内存
    1024MiB
    难度
    4
    标签
    递交数
    22
    已通过
    17
    上传者