Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
71656 sh25_ganzy 质因数分解 C++ 编译错误 0 MS 0 KB 228 2025-10-26 18:43:51

Tests(0/0):


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


测评信息: