1 条题解

  • 0
    @ 2024-7-25 13:28:25

    参考答案:

    #include<iostream>
    
    using namespace std;
    
    const int N = 100010;
    int str[N], tt;
    
    int main()
    {
        string op;
        int m;
    
        cin >> m;
        while (m--)
        {
            int x;
            cin >> op;
            if (op == "push")
            {
                cin >> x;
                str[++tt] = x;
            }
            else if (op == "pop") --tt;
            else if (op == "empty") cout << (tt ? "NO" : "YES") << endl;
            else cout << str[tt] << endl;
        }
    
        return 0;
    }
    
    • 1

    信息

    ID
    76
    时间
    1000ms
    内存
    256MiB
    难度
    9
    标签
    递交数
    9
    已通过
    6
    上传者