Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58596 | GT3RS 飞起来@阚 | 满足条件的数累加 | C++ | 通过 | 0 MS | 248 KB | 166 | 2024-12-12 17:21:11 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n,num=0; cin >> m >> n; while(m<=n){ if(m%17==0) num=m+num; m++; } cout << num; }