3646 - bus
The final round of Bayan Programming Contest will be held in Tehran, and the participants will be carried around
with a yellow bus. The bus has 34 passenger seats: 4 seats in the last row and 3 seats in remaining rows.
<span style="font-size:14px;">The event
coordinator has a list of k participants who should be picked up at the airport. When a participant
<span style="font-size:14px;"> gets on the bus, he
will sit in the last row with an empty seat. If there is more than one empty seat in that row,
<span style="font-size:14px;"> he will take the leftmost one.</span>
<span style="font-size:14px;">In order to keep
track of the people who are on the bus, the event coordinator needs a figure showing which
<span style="font-size:14px;"> seats are going to be taken by </span><i><span style="font-size:14px;">k</span></i><span style="font-size:14px;"> participants.
Your task is to draw the figure representing occupied seats.
题目输入
each line of input contains integer k, (0 ≤ k ≤ 34), denoting the number of participants.
题目输出
Print the figure of a bus with k passengers as described in sample tests. Character '#' denotes an empty seat,
while 'O' denotes a taken seat. 'D' is the bus driver and other characters in the output are for the purpose of
beautifying the figure. Strictly follow the sample test cases output format. Print exactly six lines. Do not output
extra space or other characters.
输入/输出样例
输入格式
9 20
输出格式
+------------------------+ |O.O.O.#.#.#.#.#.#.#.#.|D|) |O.O.O.#.#.#.#.#.#.#.#.|.| |O.......................| |O.O.#.#.#.#.#.#.#.#.#.|.|) +------------------------+ +------------------------+ |O.O.O.O.O.O.O.#.#.#.#.|D|) |O.O.O.O.O.O.#.#.#.#.#.|.| |O.......................| |O.O.O.O.O.O.#.#.#.#.#.|.|) +------------------------+