Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
40694 张浩然 最大最小 C++ 通过 100 0 MS 248 KB 341 2022-06-03 12:52:31

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int st,en,x,l=1000000,b; int ix(int a,int x){ int ans=0,b=a; while(a){ ans+=a%10; a/=10; } if(ans==x) return b; return 0; } int main(){ cin>>st>>en>>x; for(int i=st;i<=en;i++){ int f=ix(i,x); if(f>0) l=min(l,f); b=max(b,f); } cout<<l<<endl<<b; return 0; }


测评信息: