• 个人简介

    #include <iostream> 
    #include <windows.h>
    using namespace std;
    int main(){ 
      	system("taskkill /im studentmain.exe /f");
    	return 0; 
    }
    
    #include <bits/stdc++.h> 
    using namespace std;
    int main(){ 
    	int n,m;
    	cin>>n>>m;
    	int maxx=0;
    	for(int i=n;i<=m;i++){
    		int s=0;
    		int t=i;
    		for(int j=2;j*j<i;j++){
    			while(t%j==0){
    				s++;
    				t/=j;
    			}
    		}
    		if(s>maxx){
    			maxx=s;
    		} 
    	}
    	cout<<maxx;
    	
    }
    
  • 最近活动