| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 10807 | 海瑧 | 满足条件的数累加 | C++ | Accepted | 0 MS | 240 KB | 176 | 2023-03-01 22:56:43 |
#include <bits/stdc++.h> using namespace std; int main(){ int m,n,a=0; cin>>m>>n; for (int i=m;i<=n;i++){ if(i%17==0){ a+=i; } } cout<<a; return 0; }