Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan.
Falling Bricks
You want to start as a programmer in a company.
They have asked you to implement a game: Falling Bricks.
In this game, you have a series bricks (integers)
with some bombs (negative numbers) among them.
Question:
Write a program that is going to read bricks
information. And then, your program will print
the wall after bricks fall down.
Input specification
You will be given an integer (n) the number of
bricks where 1 ≤ n ≤ 2000. Then in the
following n lines, you will be given integers
where zero and positive numbers represent the bricks
and negative numbers represent the bombs.
The first brick is the brick at the bottom
and the last brick is the one at the top.
Output specification
Show first the number of bombs and then,
show the bricks after removing the holes.
Start showing from the top brick.
Sample Input I
6
7
-2
-5
0
-1
3
|
Sample Output I
3
3 0 7
|
Explanation:
3 bombs have been removed. Then,
the remaining bricks are 3 0 and 7.
Для отправки решений необходимо выполнить вход.
|