Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
108233 | 毛泓博(做题专用,大号Fess) | 删数问题 | C++ | 运行出错 | 0 | 0 MS | 240 KB | 400 | 2023-11-01 13:38:50 |
#include<bits/stdc++.h> using namespace std; int main() { char n[250]; int s,jj; cin.getline(n,241,' '); jj=strlen(n); cin>>s; for(int i=strlen(n)-1;i>=jj-s;i--) { char mmax='0'; int mn=0; for(int j=0;j<=i;j++) if(mmax<n[j]) mmax=n[j],mn=j; for(int j=mn;j<strlen(n)-1;j++) n[j]=n[j+1]; n[strlen(n)-1]='\0'; } for(int i=0;i<strlen(n);i++) cout<<n[i]; return 0; }