Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
16282 贺昱翔 求能被整除的最小整数 C++ 通过 100 0 MS 252 KB 194 2021-03-07 11:14:51

Tests(7/7):


#include<bits/stdc++.h> using namespace std; int main(){ int m,n,a,ans=-1; cin>>m>>n>>a; for(int i=m;i<=n;i++){ if(i%a==0) { ans=i; break; } } cout<<ans; return 0; }


测评信息: