2 条题解

  • 3
    @ 2022-10-6 9:24:26
    #include <bits/stdc++.h>
    using namespace std;
    queue <string> q;
    string x,y;
    int main()
    {
    	while(cin>>x)
    	{
    		if(x=="PUSH")
    		{
    			cin>>y;
    			q.push(y);
    		}
    		if(x=="POP")
    		{
    			if(!q.empty())
    			{
    				cout<<q.front();
    				printf("\n");
    				q.pop();
    			}
    			else
    			{	
    				cout<<"EMPTY";
    				printf("\n");
    			}
    		}
    		if(x=="END")
    		{
    			return 0;
    		}
    	}	
    	return 0;
    }
    

    信息

    ID
    486
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    140
    已通过
    49
    上传者