4 条题解

  • -3
    @ 2024-7-18 15:34:25
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	string a;
    	getline(cin,a);
    	int cnt=0;
    	for(int i=0;i<a.size();i++){
    		if(a[i]==' ' ){
    			cnt++;
    			if(cnt<2){
    				cout<<a[i];
    			}
    		}
    		else{
    			cout<<a[i];
    			cnt=0;
    		}
    	}
    	return 0;
    }
    

    信息

    ID
    333
    时间
    1000ms
    内存
    64MiB
    难度
    5
    标签
    递交数
    73
    已通过
    26
    上传者