Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
159750 | 梁乃元 | 质因数分解 | C++ | 通过 | 100 | 0 MS | 240 KB | 407 | 2024-07-30 22:25:12 |
# include <iostream> using namespace std ; bool isp ( long long x ) { if ( x < 2 ) { return false ; } if ( x == 2 ) { return true ; } for ( long long i = 2 ; i * i <= x ; i ++ ) { if ( x % i == 0 ) { cout << x / i << endl ; return false ; } } return true ; } int main ( ) { long long n ; cin >> n ; if ( isp ( n ) ) { ; } return 0 ; }