Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
68453 sh25_ganzy 质因数分解 C++ 解答错误 2 MS 248 KB 230 2025-10-04 13:03:43

Tests(6/10):


#include<bits/stdc++.h> using namespace std; int main(){ long long n; cin>>n; for(long long p=sqrt(n);p<=n/2;p++){ if(n%p==0){ cout<<p; break; } } return 0; }


测评信息: