Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
71657 sh25_ganzy 质因数分解 C++ 解答错误 0 MS 232 KB 226 2025-10-26 18:44:12

Tests(0/1):


#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; }


测评信息: