码迷,mamicode.com
首页 > 其他好文 > 详细

HDU-2601-An easy problem

时间:2014-09-06 21:11:33      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   for   sp   代码   amp   c   ef   

题目链接

http://acm.hdu.edu.cn/showproblem.php?pid=2601

这题如果直接暴力的话,就会超时,我们需要变化
n=i*j + i + j  ;n=i*(j+1) + j; n+1=(i+1)*(j+1);
就取余,就只要 一层循环了

我的代码

#include<stdio.h>
#include<math.h>
#include<string.h>
int main(void)
{
__int64 t,i,j,s,n;
scanf("%I64d",&t);
while(t--)
{
scanf("%I64d",&n);
n++; s=0;
int k=sqrt(n);
for(i=2;i<=k;i++)
{
if(n%i==0)
s++;
}
printf("%I64d\n",s);
}
return 0;
}

HDU-2601-An easy problem

标签:http   io   ar   for   sp   代码   amp   c   ef   

原文地址:http://www.cnblogs.com/liudehao/p/3959775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!