1 solutions

  • 0
    @ 2023-12-7 22:34:36

    难度:

    水的一批。

    从小到大枚举 22n\sqrt n 中所有的数。如果枚举到了一个能被 nn 整除的 ii,那么 n÷in\div i 就是答案。

    证明很简单,自己证。

    #include<bits/stdc++.h>
    using namespace std;
    int n;
    int main(){
    	cin>>n;
    	for(int i=2;i*i<=n;i++){
    		if(n%i==0){
    			cout<<n/i;
    			return 0;
    		}
    	}
    }
    
    • 1

    Information

    ID
    200
    Time
    1000ms
    Memory
    512MiB
    Difficulty
    8
    Tags
    # Submissions
    11
    Accepted
    8
    Uploaded By