| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 50612 | yangtianqi | 202403-GESP-一级-找因数 | C++ | Wrong Answer | 1 MS | 244 KB | 150 | 2024-09-01 14:06:30 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a; for(b=1;b<=a;b++) { if(a%b==0) { cout<<b; } } }