Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
108932 凌艺樽 删数问题 C++ 通过 100 0 MS 248 KB 585 2023-11-04 14:36:59

Tests(9/9):


#include <bits/stdc++.h> using namespace std; const int N=15000+10; const int INF=0x3f3f3f3f; char c[300]; int main() { int len,s; cin>>c>>s; len=strlen(c); while(s--) { for(int i=0;i<len-1;i++) { if(c[i]>c[i+1]) { for(int j=i;j<len-1;j++) { c[j]=c[j+1]; } break; } } --len; } if(len==0) { cout<<0; return 0; } for(int j=0;j<len;j++) { cout<<c[j]; } return 0; }


测评信息: