1 条题解

  • 1
    @ 2025-10-24 17:58:24
    #include<bits/stdc++.h>
    using namespace std;
    int k;
    string s;
    int now,len,i,flag;
    int main(){
        ios::sync_with_stdio(0);cin.tie(nullptr);cout.tie(nullptr);
        cin>>s>>k;
        for(int o=1;o<=k;o++){
            for(i=0;s[i]<=s[i+1];){
                i++;
            }
            s.erase(i,1);
        }
        len=s.size();
        for(int i=0;i<len;i++){
            if(s[i]!='0'){
                flag=1;
            }
            if(flag){
                cout<<s[i];
            }
        }
        if(flag==0){
            cout<<0;
        }
        return 0;
    }
    
    
    
    
    • 1

    信息

    ID
    5164
    时间
    1000ms
    内存
    125MiB
    难度
    5
    标签
    递交数
    88
    已通过
    20
    上传者