A1287.[COCI-2006_2007-contest1]#5 OKVIRI

提高+/省选-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

“Peter Pan frames” are a way of decorating text in which every character is framed by a diamondshaped frame, with frames of neigbhouring characters interleaving. A Peter Pan frame for one letter looks like this ('X' is the letter we are framing):
..#..
.#.#.
#.X.#
.#.#.
..#..
However, such a framing would be somewhat dull so we'll frame every third letter using a “Wendy frame”. A Wendy frame looks like this:
....
.
..
.X.
.
..
..
..
When a Wendy frame interleaves with a Peter Pan frame, the Wendy frame (being much nicer) is put on top. For an example of the interleaving check the sample cases.

输入格式

The first and only line of input will contain at most 15 capital letters of the English alphabet.

输出格式

Output the word written using Peter Pan and Wendy frames on 5 lines

输入输出样例

  • 输入#1

    A

    输出#1

    ..#.. 
    .#.#. 
    #.A.# 
    .#.#. 
    ..#.. 
  • 输入#2

    DOG

    输出#2

    ..#...#...*.. 
    .#.#.#.#.*.*. 
    #.D.#.O.*.G.* 
    .#.#.#.#.*.*. 
    ..#...#...*..
  • 输入#3

    ABCD

    输出#3

    ..#...#...*...#.. 
    .#.#.#.#.*.*.#.#. 
    #.A.#.B.*.C.*.D.# 
    .#.#.#.#.*.*.#.#. 
    ..#...#...*...#..

说明/提示

首页