| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78171 | sh25_shengmy | 满足条件的数累加 | C++ | Accepted | 0 MS | 240 KB | 211 | 2025-12-26 15:26:30 |
#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; }