Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54278 | zhangsicun | 质因数分解 | C++ | 通过 | 0 MS | 244 KB | 220 | 2024-10-26 23:21:58 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i = 2; i <= n; i++){ if(n % i == 0){ cout << n/i; return 0; } } return 0; }