AE00 - Rectangles


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

Task author: Jakub Radoszewski.


hide comments
antiquity: 2016-03-01 00:50:47

Check for input 1

satishgupta: 2016-02-11 19:35:40

Area Matters ;)

Last edit: 2016-02-11 19:38:15
sharath_111: 2016-01-26 14:18:03

good one for beginners,no need of dp,(factors!!) :) :) :)

gomathi ganesan: 2015-12-30 09:42:58

factors!!!!!

sourabh: 2015-12-26 07:55:35

Use dp

Bartosz: 2015-12-19 19:22:54

Very easy one. Good for beginners.

priyanshu ranjan: 2015-12-12 19:37:23

piece of cake (-_-)

vishnu agarwal: 2015-12-08 17:11:57

use loop from 1 to n/2+1 and check answer for 1 is 1... .

rajesh1995: 2015-11-29 11:57:39

just two for loops..done in 0.0 s

sarthak_8: 2015-10-21 20:54:54

Can somebody please tell me the error in my code. It shows the correct output for every test case but SPOJ shows WA. Here's the code <snip>

Last edit: 2022-10-13 20:16:08

Added by:Race with time
Date:2009-05-03
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Algorithmic Engagements 2009