hdu 2601 An easy problem
Posted liguangsunls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2601 An easy problem相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int _;
__int64 n,i,t;
scanf("%d\n",&_);
while(_--)
{
scanf("%I64d",&n);
n+=1;
int cnt=0;
for(i=2;i*i<=n;i++)
{
if(n%i==0) cnt++;
}
printf("%d\n",cnt);
}
return 0;
}
以上是关于hdu 2601 An easy problem的主要内容,如果未能解决你的问题,请参考以下文章
hdu 5572 An Easy Physics Problem 圆+直线