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
|
||||||||||||||
2014-04-11 23:28:04 Simon Liang
so many gotcha's in this one |
||||||||||||||
2014-03-01 00:16:27 Konstantin
the picture is broken |
||||||||||||||
2014-02-18 12:28:13 Neel Jinwala
refrained from printing \n (newline) at the end.. ACcepted.. |
||||||||||||||
2014-01-21 20:51:24 RAJAT SINGH
please explain the algo.....to solve |
||||||||||||||
2014-01-10 21:14:12 Sidharth Raja
0.00 AC at first go. That feel. :') |
||||||||||||||
2013-12-28 13:05:24 saanc
nice one...simple maths...AC with ex. time 0.02 sec. |
||||||||||||||
2013-12-23 13:01:24 Ashwini
can anyone check why i am getting wrong answer. this question is so simple. for n=10000 output 46884. is it wrong Last edit: 2013-12-23 13:48:47 |
||||||||||||||
2013-12-08 18:06:16 lzyerste
2 lines in python |
||||||||||||||
2013-11-17 14:55:39 californiagurl
is anyone using hashing? edit: no need of dat... n*sqrt(n) gave AC in .09 sec :) Last edit: 2013-11-17 19:13:01 |
||||||||||||||
2013-11-16 10:03:24 shantanu
gotcha! |