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
|
Harsh Vardhan Ladha:
2015-05-24 06:19:12
Forgot to break :P AC |
|
bholagabbar:
2015-04-08 14:48:06
Why won't this work? ((n/2)*2)-1)+(((n+1)/2)
|
|
Francky:
2015-04-05 12:25:44
I've edit the body, now everybody should see the image inside the description. |
|
NIKHIL KUMAR SINGH:
2015-04-04 17:31:18
image didn't get load on my browser
|
|
Gaurav:
2015-02-27 06:38:50
2 lines O(n^0.5) soln :) |
|
Jonas Collberg:
2015-02-17 12:29:44
Better solution than O(N ^ 0.5) possible? |
|
Sajan mishra:
2015-01-19 06:26:13
Problem description is flawed, it asks for unique rectangles, but the answer is different. |
|
Siddharth:
2014-12-27 12:35:43
I am getting right answer in my compiler but here I am not.I have tried exta test cases suggested by rituraj.So what should I do as I am a newbie?
|
|
Abhishek Deora:
2014-10-13 21:32:59
on ideone time for n=10000 is 0.4 sec. while here its showing tle... why is it so ? |
|
Pagarwal:
2014-09-04 00:40:17
10th case is not running..getting wrong answer..can anyone tell me if input is 7 then no. of triangles should be 9 or am i wrong..?? Last edit: 2014-09-04 00:41:37 |
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 |