3 条题解

  • 0
    @ 2024-4-14 17:39:13
    #include<cstdio>
    #include<iostream>
    using namespace std;
    
    int main(){
    	
    	string s;
    	cin>>s;
    	int len=s.length();
    	char now=s[0];
    	int count=1;
    	
    	for(int i=1;i<len;++i){
    		if(s[i]==s[i-1]){
    			count++;
    		}
    		else{
    			cout<<now<<count;
    			count=1;
    			now=s[i];
    		}
    	}
    	
    	cout<<now<<count;
    
    	return 0;
    }
    

    信息

    ID
    65
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    130
    已通过
    74
    上传者