| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 70111 | sh25_ganzy | 满足条件的数累加 | C++ | Accepted | 0 MS | 244 KB | 211 | 2025-10-17 14:53:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int m,n,s=0; cin>>m>>n; for(int i=m;i<=n;i++){ if(i%17==0){ s+=i; } } cout<<s; return 0; }