Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 21957 | Accepted: 13879 |
Description
Input
Output
Sample Input
2 5 100
Sample Output
2 10
Source
和UVa 10110基本相同,只不过这个是求总个数,而Uva那道只要判断最后一个
解题思路参见UVa 10110(http://www.cnblogs.com/lzj-0218/p/3531714.html)
1 #include<iostream> 2 #include<cstdio> 3 #include<cmath> 4 5 using namespace std; 6 7 int main() 8 { 9 int kase; 10 11 scanf("%d",&kase); 12 13 while(kase--) 14 { 15 int n; 16 scanf("%d",&n); 17 int tmp=sqrt(n+0.5); 18 printf("%d\n",tmp); 19 } 20 21 return 0; 22 }
原文:http://www.cnblogs.com/lzj-0218/p/3537105.html