I dont understand what I supposed to do in this exercise, I am begining programming constest, if you can help me is very appreciated, I have seen formulas, but I dont understand what to do, I feel very stupid , and for everyone is easy :(

http://www.codeforces.com/contest/1/problem/A

link|improve this question
Is there anything specific you are having problems understanding? The input, output, problem statement, something else? – mjschultz Sep 10 '10 at 18:45
1  
problem statement I got problems – pitt Sep 10 '10 at 18:47
What progaramming language do you use? – Oren A Sep 10 '10 at 19:35
feedback

2 Answers

up vote 0 down vote accepted

One little hint. Suppose that you must cover an axn rectangle with axa stones. Then the solution is "k stones", where ka is the first multiple of a greater than or equal to n. (Draw a picture.)

How to go for k? Do a division and have a look at the documentation of the ceil() function (it is quite standard).

Now what happens if we move to a 2-dimensional problem, i.e. if we have to cover an mxn rectangle? (Draw another picture, do some experiments.)

link|improve this answer
thanks for your help – pitt Sep 11 '10 at 2:28
You're welcome. Actually it is better to solve the problem without involving floating point numbers or ceil(), that is, doing an integer division and checking the remainder, but the underlying concept is that of "rounding the result up to the next integer". – Federico Ramponi Sep 11 '10 at 8:55
feedback

The site seems to be in Russian or English. I'm guessing that neither of these is your first language.

The problem is to pave a rectangular area with square tiles. You are given three values:

  • length of the rectangular area
  • width of the rectangular area
  • size of the tiles (length of a side: remember they are square)

You must write a program that takes the three numbers above as inputs (on the command line) and provide the number of tiles required as output.

link|improve this answer
how do I obtain the output?, this is my question, the formula – pitt Sep 10 '10 at 18:58
That's not really an interpretation problem; it's what you're supposed to figure out for yourself. – Zac Thompson Sep 11 '10 at 18:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.