Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108797 | 林扬泉 | 删数问题 | C++ | 解答错误 | 88 | 0 MS | 256 KB | 315 | 2023-11-04 10:56:33 |
#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; }