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-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 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-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?? |
||||||||||||||
2015-06-18 18:20:11 Abhinav
finally 0.00! use dp..:) |
||||||||||||||
2015-06-16 21:35:44 iammangod96
nothing to learn as such. Use the following formula if really wanna do <snip> Last edit: 2022-10-13 20:16:29 |
||||||||||||||
2015-06-09 02:54:34
Recursive solution in Java gave me an Stack Overflow... =/ Solved it with dynamic programming then. |
||||||||||||||
2015-06-02 20:10:05 Siddhant Somani
10th test case wa ? |