3 条题解

  • 0
    @ 2024-4-12 11:59:00
    #include<bits/stdc++.h>
    using namespace std;
    string s;
    int main(){
        ios::sync_with_stdio(0);
        cin.tie(0);
        cout.tie(0);
        cin>>s;
        for(int i=0;i<s.size();){
            int ans=1;
            int j=i+1;
            while(s[j]==s[i]){
                ans++;
                j++;
            }
                cout<<s[i]<<ans;
                i=j;
        }
    }
    

    信息

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