Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
20949 邱修齐 求能被整除的最小整数 C++ 通过 100 0 MS 252 KB 188 2021-06-23 18:58:54

Tests(7/7):


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


测评信息: