Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
34377 WZH 删数问题 C++ 解答错误 0 MS 252 KB 421 2023-12-19 21:40:59

Tests(0/1):


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


测评信息: