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
soodan: 2016-12-04 15:31:02

AC IN ONE GO!!!!!!!!!

anurag200698: 2016-11-17 17:26:54

very simple got AC in first go:)

mohitgupta07: 2016-11-16 08:09:50

O(n) not O(sqrt(n)). Since n>sqrt(n) . Well this question is good enough to make your basic concepts more clear also these type of adhoc question generally come up in competitions

harsh2leo: 2016-10-22 13:21:37

finally,,,,,,,,, :'D

adi_pra: 2016-10-11 21:39:27

got AC in one go , O(n^0.5).

hamjosh1: 2016-09-15 07:28:52

O(sqrt(n)) :'D

soodan: 2016-09-03 16:58:14

solve using factors and print test cases of n=1,2,3 complexity=O(n^2)

Last edit: 2016-09-03 16:59:16
narutohokage_1: 2016-08-11 21:02:23

Every Square Is a rectangle as rectangle is a quadrilateral with all angles right angle so all squares are also rectangle. But not vice versa . Output Is correct for figure shown for 6 squares there can be 8 rectangle.

narutohokage_1: 2016-08-11 20:59:42

There is no no absolutely no hidden cases in this problem . It is simple as it seem. For someone having hard time please know that i too had a hard time first but look at pattern it is easy. You can do it .. you are not less than others. You can do it. No recursion or Dynamic Programming required just simple solution. Please don't look at internet for Answers . You won't learn anything .No need for new line at end of solution.
Test Case
0 Ans 0
1 Ans 1
2 Ans 2
10000 ans 46884

narutohokage_1: 2016-08-11 19:54:38

@sajalkaushik17 Every Square Is A Rectangle. So Correct Output.


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