1 条题解

  • 0
    @ 2023-12-23 10:52:48
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	bool t=false;
    	string a;	
    	while(cin>>a){
    		if(t){
    			cout<<",";
    		}else{
    			t=true;
    		}
    		cout<<a.size();
    	}
    }
    
    
    • 1

    信息

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