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.


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

hide comments
2017-09-11 21:44:51
1 Go AC ! just count the no of divisors upto((floor)sqrt(i)) where 1<=i<=n
2017-08-09 09:35:41
first find a pattern for n = 6 , then try finding pattern for n = 8 .
use the given illustration for n = 8 and see what pattern is getting formed when we will form rectangle with 3 rows .
2017-08-08 19:50:24
AC IN ONE GO...
2017-07-16 14:54:33
get AC in one go...
2017-07-08 22:38:21
Literally, took me like 2 minutes and I'm average at best!
2017-07-08 09:22:31 Ravi Jangra
its all about finding the pattern and start an loop with optimised iterations
2017-07-05 18:12:14
AC in the first! seem it is very simples
2017-05-27 17:40:05
AC in one go, simply use general mathematics no use of using DP, just basic Ad-hoc
2017-05-25 11:49:33
AC IN ONE GO...
2017-04-19 08:07:10
AC on one go though took about 30-35 mins to be sure of correctness of my soln!!
Little tedious but interesting problem!
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.