| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 89973 | sh25_guwz | 质因数分解 | C++ | Accepted | 0 MS | 248 KB | 247 | 2026-06-05 15:03:31 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int temp; for(int a=2;a<n;a++){ if(n%a==0){ temp=n/a; break; } else ; } cout<<temp; }