Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
156728 | 吴悠 | 质因数分解 | C++ | 通过 | 100 | 1 MS | 252 KB | 320 | 2024-07-18 11:29:42 |
#include<iostream> #include<cmath> using namespace std; int main(){ int n; cin>>n; for(int i=n/2;i>=2;i--){ if(n%i==0){ bool f=true; for(int j=sqrt(i);j>=2;j--){ if(i%j==0){ f=false; break; } } if(f==true){ cout<<i<<endl; exit(0); } } } return 0; }