Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
12381 陈路垚 最大最小 C++ 通过 100 0 MS 252 KB 316 2021-01-03 09:47:15

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int main(){ int l,d,x,s,ans1,ans2,t=0,a; cin>>l>>d>>x; for(int i=l;i<=d;i++){ a=i; s=0; while(true){ s+=a%10; a/=10; if(a==0) break; } if(s==x){ t++; if(t==1) ans1=i; ans2=i; } } cout<<ans1<<endl<<ans2; return 0; }


测评信息: