Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108802 | 林扬泉 | 删数问题 | C++ | 通过 | 100 | 0 MS | 256 KB | 393 | 2023-11-04 10:58:19 |
#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; }