当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3114:Bold ASCII Lines

题目描述
Your grandmother recently developed a passion for the internet and the new technologies in general, and is now discovering the wonders of ASCII art. Unfortunately, her sight is not as it once was, and she has difficulty seeing the pictures.

Moreover, she cannot merely increase the font size as she usually does, because doing so makes the characters stand out more on their own and less as a whole. You come up with a solution: writing a program which duplicates the ASCII lines in order to make them look bold.
输入解释
The first line of the input will contain n, the number of test cases. For each test case, the first line will contain the positive integers w and h, both of which will be at most 100. h lines will follow, each containing w ASCII characters.

The character “.” (dot) will denote the background ASCII “color”, and the only other color will be “*” (star). For each image, add a 1-character wide border of dots around the image, and proceed to replace every single star character in the original picture with a , where the middle star is positioned where the original star was.
输出解释
In the output, separate each test case with “---”.
输入样例
2
2 1
*.
3 3
.*.
*.*
.*.
输出样例
.*..
***.
.*..
---
..*..
.***.
*****
.***.
..*..
来自杭电HDUOJ的附加信息
Recommend lcy

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-3114

最后修改于 2020-10-25T23:00:11+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 32768/32768K(Java/Others)