Submit | All submissions | Best solutions | Back to list |
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
|
||||||||||||||
2011-08-04 13:40:47 abualy
TLE ,but now worked with some optimisation :p |
||||||||||||||
2011-06-11 15:25:31 ankitku
it is. |
||||||||||||||
2011-03-15 10:39:16 rishabh nigam
N=10000 46884 N=5000 21723 where is my answer wrong |
||||||||||||||
2010-10-20 09:29:35 The Champ
@pooja N=10000 46884 |
||||||||||||||
2010-10-05 07:11:21 Rise
Can anyone add more testcases?? I am getting wrong answer :( |
||||||||||||||
2010-08-07 20:16:34 David Gómez
PDF link is not working |
||||||||||||||
2010-05-18 05:49:01 Kuntal Ghosh
yeah,this is correct... |
||||||||||||||
2010-03-19 08:24:06 jack(chakradarraju)
square is also a rectangle (i.e.) square can be derived from rectangle |
||||||||||||||
2010-02-15 02:25:29 Rodrigo Salazar
@tinku: rectangle has 4 sides, with 4 right angles Last edit: 2010-02-15 02:26:16 |
||||||||||||||
2010-02-09 16:14:33 Pranay
how can 1x1 be a rectangle? |