Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
109203 江婉儿 删数问题 C++ 通过 100 0 MS 248 KB 355 2023-11-07 13:30:28

Tests(9/9):


#include<bits/stdc++.h> #include<cmath> using namespace std; int main() { int s; char n[250]; cin>>n>>s; int d=strlen(n); for(int a=1;a<=s;a++) { for(int b=0;b<d-1;b++) { if(n[b]>n[b+1]) { for(int c=b;c<d-1;c++) { n[c]=n[c+1]; } break; } } d--; } for(int e=0;e<d;e++) cout<<n[e]; }


测评信息: