Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
40224 王籽易 最大最小 C++ 通过 100 0 MS 252 KB 424 2022-05-28 14:19:52

Tests(10/10):


#include <bits/stdc++.h> using namespace std; int l,d,x,maxq=0,minq=0; int main(){ cin>>l>>d>>x; for(int i=l,j=d;i<=d,j>=l;i++,j--){ int a=i,b=j,s1=0,s2=0; while(a!=0){ s1+=a%10; a/=10; } while(b!=0){ s2+=b%10; b/=10; } if(s1==x&&minq==0){ minq=i; } if(s2==x&&maxq==0){ maxq=j; } if(maxq!=0&&minq!=0){ break; } } cout<<minq<<" "<<maxq; return 0; }


测评信息: