C. Word on the Paper

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

On an 8×88×8 grid of dots, a word consisting of lowercase Latin letters is written vertically in one column, from top to bottom. What is it?

Input

The input consists of multiple test cases. The first line of the input contains a single integer t� (1≤t≤10001≤�≤1000) --- the number of test cases.

Each test case consists of 88 lines, each containing 88 characters. Each character in the grid is either .. (representing a dot) or a lowercase Latin letter (aa--zz).

The word lies entirely in a single column and is continuous from the beginning to the ending (without gaps). See the sample input for better understanding.

Output

For each test case, output a single line containing the word made up of lowercase Latin letters (aa--zz) that is written vertically in one column from top to bottom.

Example

input

Copy

复制代码

5

........

........

........

........

...i....

........

........

........

........

.l......

.o......

.s......

.t......

........

........

........

........

........

........

........

......t.

......h.

......e.

........

........

........

........

........

.......g

.......a

.......m

.......e

a.......

a.......

a.......

a.......

a.......

a.......

a.......

a.......

output

Copy

复制代码
i
lost
the
game
aaaaaaaa

解题说明:水题,直接遍历输出字母即可。

cpp 复制代码
#include<stdio.h>

int main()
{
	int t;
	scanf("%d", &t);
	for (t; t > 0; t--)
	{
		char a[72];
		for (int i = 0; i < 72; i++)
		{
			scanf("%c", &a[i]);
		}
		for (int i = 0; i < 72; i++)
		{
			if (a[i] >= 'a' && a[i] <= 'z')
			{
				printf("%c", a[i]);
			}
		}
		printf("\n");
	}
	return 0;
}
相关推荐
云栖梦泽几秒前
鸿蒙企业级工程化与终极性能调优实战
开发语言·鸿蒙系统
Eloudy2 分钟前
通过示例看 C++ 函数对象、仿函数、operator( )
开发语言·c++·算法
leaves falling3 分钟前
c语言将三个整数数按从大到小输出
c语言·开发语言
superman超哥4 分钟前
仓颉高性能实践:内存布局优化技巧深度解析
c语言·开发语言·c++·python·仓颉
代码游侠4 分钟前
学习笔记——数据封包拆包与协议
linux·运维·开发语言·网络·笔记·学习
2301_797312266 分钟前
学习Java32天
java·开发语言
小二·7 分钟前
会议精灵:用ModelEngine构建智能办公助手实战记录
开发语言·python
崇山峻岭之间10 分钟前
Matlab学习记录13
开发语言·学习·matlab
wjs202413 分钟前
Python 变量类型
开发语言
沐知全栈开发15 分钟前
Scala 数组
开发语言