提交时间:2023-11-04 10:56:33

运行 ID: 108797

#include<bits/stdc++.h> using namespace std; int main(){ string n; int s,i; cin>>n>>s; while(s){ for(i=0;n[i]<=n[i+1];){ i++; } n.erase(i,1); s--; } while(n[0]=='0'&&n.size()>1){ n.erase(0,1); } cout<<n; return 0; }