| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 71668 | sh25_wangsj | 质因数分解 | C++ | Accepted | 0 MS | 240 KB | 177 | 2025-10-26 19:27:23 |
#include <iostream> using namespace std; int main() { int a,b=2,c; cin>>a; while(a%b!=0){ b=b+1; } c=a*1.0/b; cout<<c; return 0; }