CF5B.Center Alignment

普及-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Almost every text editor has a built-in function of center text alignment. The developers of the popular in Berland text editor «Textpad» decided to introduce this functionality into the fourth release of the product.

You are to implement the alignment in the shortest possible time. Good luck!

几乎每一个文本编辑器都有文字居中对齐的功能,因此Berland的著名文本编辑器Textpad的开发者们希望在产品的第四次更新中加入此功能。

您的任务是尽快编写一个文本居中对齐的原型程序,祝您好运!

输入格式

The input file consists of one or more lines, each of the lines contains Latin letters, digits and/or spaces. The lines cannot start or end with a space. It is guaranteed that at least one of the lines has positive length. The length of each line and the total amount of the lines do not exceed 1000.

输入包含一行或者多行文本,每行均由拉丁字母、数字和/或空格组成,每一行都不会以空格开始或者结束,保证至少有一行长度大于等于1。每行的长度和总行数都不会超过1000。

输出格式

Format the given text, aligning it center. Frame the whole text with characters «*» of the minimum size. If a line cannot be aligned perfectly (for example, the line has even length, while the width of the block is uneven), you should place such lines rounding down the distance to the left or to the right edge and bringing them closer left or right alternatively (you should start with bringing left). Study the sample tests carefully to understand the output format better.

将文本居中对齐,用星号'*'框起整个文本。

如果无法实现完美的居中对齐,请将这一行文本向左或者向右微调(您应该在第一次遇到此类情况时将该行文本向左微调,下一次向右,在下一次向左...依此类推)。

如果您对输出格式仍有疑惑,请参看样例。

输入输出样例

  • 输入#1

    This  is
    
    Codeforces
    Beta
    Round
    5

    输出#1

    ************
    * This  is *
    *          *
    *Codeforces*
    *   Beta   *
    *  Round   *
    *     5    *
    ************
  • 输入#2

    welcome to the
    Codeforces
    Beta
    Round 5
    
    and
    good luck

    输出#2

    ****************
    *welcome to the*
    *  Codeforces  *
    *     Beta     *
    *   Round 5    *
    *              *
    *      and     *
    *  good luck   *
    ****************
首页