| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76668 | sh25_shenpy | 质因数分解 | C++ | Accepted | 0 MS | 252 KB | 181 | 2025-12-19 15:43:21 |
// #include<bits/stdc++.h> using namespace std; int n; int main(){ cin>>n; for(int i=2;i*i<=n;++i){ if(n%i==0){ cout<<n/i<<endl; return 0; } } return 0; }