Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
20903 孙喻桐 加入数 C++ 通过 100 0 MS 260 KB 396 2021-06-20 19:35:24

Tests(10/10):


#include<bits/stdc++.h> using namespace std; string s; int f,fu=-1; char p; int main(){ cin>>s>>p; for(int i=0;i<s.length();i++){ if(s[i]<s[i+1]){ f=i; break; } } for(int i=0;i<s.length();i++){ if(p-'0'>s[i]-'0'&&f!=i){ fu=i; break; } } for(int i=0;i<s.length();i++){ if(f!=i){ if(fu==i)cout<<p; cout<<s[i]; } } if(fu==-1)cout<<p; }


测评信息: