ГлавнаяСборникиТурнирыРазделыФорумыУчастникиПечатьПомощьО системе

Разделы > Linear Data Structures: Arrays > задача:


50496 - Falling Bricks

Гость
• Вопросы к жюри (1)

Задачи раздела

• 50446 - Snake
• 50345 - Orders
• 50822 - Linked List
• 50529 - Row to Table
• 50499 - Table to Row
• 50990 - Two Neighbors
• 50823 - Secret Number
• 50853 - Parking Place
• 50496 - Falling Bricks
• 50876 - He is my cousin
• 50829 - Decode an Image
• 50851 - Repeated Numbers
• 50838 - Balanced Numbers
• 50515 - Lines - Revisited
• 50913 - Manhattan Distance
• 50824 - Sum of Group Maxes
• 50449 - The biggest result

Обратная связь

Если у вас есть предложения или пожелания по работе Contester, посетите форум сайта www.contester.ru.

Лимит времени 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.



Для отправки решений необходимо выполнить вход.

www.contester.ru