| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 881 | A班-袁誉晏 | 整除问题 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 200 | 2024-11-30 11:09:46 |
#include <bits/stdc++.h> using namespace std; int main() { int min,max,factor; cin>>min>>max>>factor; for(int i=max;i<=min;i++) { if (i % factor == 0)cout<<i; } }