| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 867 | A班-岑思熠 | 整除问题 | C++ | Accepted | 100 | 1 MS | 260 KB | 178 | 2024-11-30 10:56:16 |
#include<bits/stdc++.h> using namespace std; int main() { int q,x,g; cin>>q>>x>>g; for(int i=q;i<=x;i++) { if(i%g==0) { cout<<i<<" "; } } return 0; }