标签:ios ane top str 输出 iostream 输入 clu play
2012年NOIP全国联赛普及组
已知正整数 n是两个不同的质数的乘积,试求出较大的那个质数 。
输入只有一行,包含一个正整数 n。
输出只有一行,包含一个正整数p,即较大的那个质数。
21
7
【数据范围】
对于60%的数据,6≤n≤1000。
对于100%的数据,6≤n≤2*109。
1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 using namespace std; 5 long long int ans; 6 long long int n; 7 int main() 8 { 9 10 scanf("%lld",&n); 11 long long int m=n/2; 12 for(int i=2;i<=m;i++) 13 { 14 if(n%i==0) 15 { 16 ans=n/i; 17 break; 18 } 19 } 20 printf("%lld",ans); 21 return 0; 22 }
标签:ios ane top str 输出 iostream 输入 clu play
原文地址:http://www.cnblogs.com/zwfymqz/p/6666092.html