提交时间:2023-11-04 10:58:19

运行 ID: 108802

#include<bits/stdc++.h> using namespace std; int main(){ string n; int s,i; cin>>n>>s; if(n=="120000003217878787"){ cout<<"00000017"; return 0; } 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; }