11 条题解

  • 0
    @ 2024-7-8 3:25:41
    #include <iostream>
    #include<stdio.h>
    #include <vector>
    #include <string>
    using namespace std;
    
    
    int main() {
    	string str;
    	
    	getline(cin, str);
    	int n = str.size();
    	for (int i = 0; i < n; i++) {
    		if (str[i] != ' ' || (str[i] == ' ' && str[i + 1] != ' '))
    			cout << str[i];
    	}
    	return 0;
    }
    

    信息

    ID
    11
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    1280
    已通过
    574
    上传者