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
|
||||||||||||||
2015-10-21 20:54:54
Can somebody please tell me the error in my code. It shows the correct output for every test case but SPOJ shows WA. Here's the code <snip> Last edit: 2022-10-13 20:16:08 |
||||||||||||||
2015-10-18 14:23:13
For French speakers there is solution and explanation on this site: <snip> Last edit: 2022-10-13 20:16:17 |
||||||||||||||
2015-10-11 13:06:12
@burger_king, Y U ZO OZM? :O :O :O |
||||||||||||||
2015-09-30 18:18:51
use dp easy got in 0.00 time |
||||||||||||||
2015-08-02 21:58:29 Mahesh Chaurasia
Very easy Question ... AC in first attempt. No need of DP |
||||||||||||||
2015-08-02 05:42:14 MishThi
Super easy question but my silly mistake cost me 5 WAs.. :( |
||||||||||||||
2015-07-31 12:31:16 ROHIT Kumar
wrong at judge 9 .... |
||||||||||||||
2015-07-27 12:29:53 ALi Ibrahim
Easy one, First Accepted :) |
||||||||||||||
2015-07-15 19:49:18 Akshay Aradhya
No Need DP.Simple for loops. |
||||||||||||||
2015-07-06 21:34:56 Vivek
How to solve it with dp?? |