D - Rectangles

来源:互联网 发布:mac抓取网页视频 编辑:程序博客网 时间:2024/06/05 21:14

Byteman has a collection of N squares with side 1. How many different rectangles can he form using these squares?

Two rectangles are considered different if none of them can be rotated and moved to obtain the second one. During rectangle construction, Byteman can neither deform the squares nor put any squares upon any other ones.

Input

The first and only line of the standard input contains one integer N (1 <= N <= 10000).

Output

The first and only line of the standard output should contain a single integer equal to the number of different rectangles that Byteman can form using his squares.

Example

For the input data:

6

the correct result is:

8

#include<cstdio>
using namespace std;
int main()
{
    int n,c;
    while(scanf("%d",&n)!=EOF)
    {
        c=0;
        for(int i=1;i*i<=n;i++)
        {
            for(int u=i;i*u<=n;u++)
            {
                if(i*u<=n)
                {
                    c++;
                }
            }
        }
        printf("%d\n",c);
    }
    return 0;
}

思路很简单!由于数据不是很大,遍历即可!


0 0
原创粉丝点击