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;
}
相关推荐
码力码力我爱你14 分钟前
C HTML格式解析与生成之gumbo
c语言·开发语言·html
bu_shuo18 分钟前
Word中插入当前日期与时间
word·
工程师老罗24 分钟前
Java笔试面试题AI答之设计模式(4)
java·开发语言·设计模式
muzi_liii29 分钟前
C++类和对象(下)
开发语言·c++
DdddJMs__13536 分钟前
C语言 | Leetcode C语言题解之第421题数组中两个数的最大异或值
c语言·leetcode·题解
zero.cyx38 分钟前
JS函数部分
开发语言·前端·javascript
一丝晨光39 分钟前
语言的条件语句
java·开发语言·c++·程序员·c·条件语句·algol
细节的温柔1 小时前
Python的主要特点及其应用领域
开发语言·python
Pdh胖大海1 小时前
天源迪科java实习生面经
java·开发语言
安亿1031 小时前
linux下的日志编写
linux·服务器·c语言·软件构建