Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
34369 Andrew宥杨 删数问题 C++ 解答错误 0 MS 244 KB 424 2023-12-19 21:37:29

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; string s; int n; cin>>s>>n; while(n){ int i=0; for(i=0;i<s.size()-1;i++){ if(s[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()) pos++; s.erase(0,pos); cout<<s<<endl; } return 0; }


测评信息: